필터 지우기
필터 지우기

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.

조회 수: 3 (최근 30일)
Don't really know how to store as a character matrix

답변 (1개)

Chris C
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

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by