for loop append variable
이전 댓글 표시
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
Stephen23
2022년 2월 18일
No need to use a loop:
{list.name} % to place into a cell array
[list.name] % to concatenate together
il147
2022년 2월 18일
vertcat(list.name) % concatenate elements
[list.name].' % concatenate elements
{list.name}.' % place elements into a cell array
il147
2022년 2월 18일
Stephen23
2022년 2월 18일
That is why I showed you this approach:
{list.name}.'
Much simpler than a loop.
il147
2022년 2월 18일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!