i'd like to append variable n0 to n1
but this code made just last variable
Thanks!
leng=length(list)
n0=[]
for i=1:leng
nl=list(i).name
end

댓글 수: 6

No need to use a loop:
{list.name} % to place into a cell array
[list.name] % to concatenate together
il147
il147 2022년 2월 18일
Thanks, but length of list is 10 so I want to make name list like 10 by 1(10*1)
Stephen23
Stephen23 2022년 2월 18일
편집: Stephen23 2022년 2월 18일
vertcat(list.name) % concatenate elements
[list.name].' % concatenate elements
{list.name}.' % place elements into a cell array
il147
il147 2022년 2월 18일
Sorry but my 'name' is 'char' so it didn't work vercat
Anyway Thanks!
That is why I showed you this approach:
{list.name}.'
Much simpler than a loop.
il147
il147 2022년 2월 18일
It works!!!! Thanks for your help!!

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

 채택된 답변

KSSV
KSSV 2022년 2월 18일
편집: KSSV 2022년 2월 18일

0 개 추천

You can make it a cell array.
leng=length(list)
nl = cell(leng,1) ;
for i=1:leng
nl{i}=list(i).name
end
You may access n1{1}.........n1{10}

댓글 수: 3

il147
il147 2022년 2월 18일
Thanks, And Is there any code that append name to empty list(n0)
KSSV
KSSV 2022년 2월 18일
You can do the same as shown above. Store them into a cell array.
il147
il147 2022년 2월 22일
Do you have any idea to make it matrix form not cell array?

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

질문:

2022년 2월 18일

댓글:

2022년 2월 22일

Community Treasure Hunt

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

Start Hunting!

Translated by