Converting an array of string to an array of variables

조회 수: 5 (최근 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 CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by