I need to write a script that will prompt the user for four course numbers. Each will be a string of length 5 of the form ‘CS101’. These strings are to be stored in a character matrix.
1 次查看(过去 30 天)
显示 更早的评论
Don't really know how to store as a character matrix
0 个评论
回答(1 个)
Chris C
2014-3-17
This can be done in a structure setting as well which would probably make storage and recall easier, but to answer your question you could just use the below:
CourseNums = cell(1,4);
for i =1:4
display('Please enter your course numbers: ');
CourseNums{i} = input(sprintf('Course %d: ',i),'s');
end
CourseNums
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!