matlab 我想请问一下如何定义“字符串”数组

,请教一下,matlab 我想请问一下如何定义“字符串”数组
最新回答
弦未尽

2024-10-16 11:58:05

a = cell(5);
for i= 1:5
a{i} = ....;
end