Struct to matrix

조회 수: 1 (최근 30일)
Nuno Fernandes
Nuno Fernandes 2011년 9월 3일
Hello
i have something like
{'C1' 'C3/A2' 'C4' } and i want to have
a=[C1;C3/A2;C4]
how can i do this?
Thanks
  댓글 수: 1
Paulo Silva
Paulo Silva 2011년 9월 3일
can you explain what's the purpose, correct me if I'm wrong, the cell got a string for each element but the array has variables?

댓글을 달려면 로그인하십시오.

답변 (2개)

Paulo Silva
Paulo Silva 2011년 9월 3일
C1=1;C3=3;A2=2;C4=4;
s={'C1' 'C3/A2' 'C4' }
m=[cellfun(@eval,s)] %evaluate the calculations of the string
If this assumption isn't correct I really don't know what you want because things like this ['C1' 'C3/A2' 'C4'] are just a string not one array, also ['C1';'C3/A2';'C4'] isn't valid.
PS: Before someone hits me in the head with one hammer lol :D for using the eval function, I do know it's a lame solution but right now I don't remember of a better solution.

Walter Roberson
Walter Roberson 2011년 9월 3일
Your meaning is not clear. Possibly you are wanting
s={'C1' 'C3/A2' 'C4' };
s(:)
or perhaps you want
char(s(:))
or perhaps something else entirely.

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by