Question in creating variables.
조회 수: 4 (최근 30일)
이전 댓글 표시
How do i create variables in each iteration? like x_1 to x_n and then assigning values/arrays to each of them.
채택된 답변
Matt J
2012년 9월 30일
I would do something like this:
labels=arrayfun(@(i) ['A' num2str(i)], 1:3,'uni',0).';
data=cellfun(@(a) num2str(a), num2cell(A),'uni',0);
result=[labels, data]
result =
'A1' '3' '5' '6'
'A2' '5' '3' '4'
'A3' '6' '7' '9'
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!