Info

この質問は閉じられています。 編集または回答するには再度開いてください。

stored character string to character matrix by using loop

1 回表示 (過去 30 日間)
jarvan
jarvan 2014 年 11 月 11 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I am going to use loop to prompt out 4 course name as 5-character string as form'AB101'. And I need to stored those string in a character matrix course.
n=4;
for i = 1:n
class{i} = input('Enter the course name : ','s')
mymat = [ 'myDataFile' str2num(class{:}) '.mat' ];
save(mymat);
end
str2num('class')
Here, I saved those 4 course by 4 mat file, however, how can I store in one file and switch them to a character matrix?

回答 (0 件)

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by