フィルターのクリア

Converting an array of string to an array of variables

1 回表示 (過去 30 日間)
Gustavo
Gustavo 2013 年 6 月 20 日
Hello Everyone,
I have the following code which creates an row vector of strings:
variables(1) = cellstr('p0');
for i = 1:52
str1 = sprintf('m%.0f',i);
str2 = sprintf('p%.0f',i);
variables(2*i) = cellstr(str1);
variables(2*i+1) = cellstr(str2);
end
What would be the best way to convert this "variables" array of strings into a an array of variables?
Thanks,
Gus

回答 (1 件)

Vishal Rane
Vishal Rane 2013 年 6 月 21 日
Not sure I understand your question. Are you trying to create an array of the 'variables' array ?
b(1:5)= {variables} % gives a 1*5 cell array where each element is 'variables'

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by