Loop that creates arrays
이전 댓글 표시
Hey folks I'm trying to write a loop that will create arrays filled with zeros and I'd like it so that each array can be identified somehow (i.e. subscripts, unique name for each array).
In Maple, I would have done something like this... for k to 10 do A[k] := Array(1..10): end do:
which would create 10 arrays and each could be indivually accessed using A[k]. (i.e. A[1] is an array of size 10, A[2] is a different array of size 10 etc...)
Is there a way to do this in Matlab?
채택된 답변
추가 답변 (3개)
Sean de Wolski
2011년 2월 10일
doc cell
You need cell arrays.
Brian
2011년 2월 10일
0 개 추천
댓글 수: 1
Walter Roberson
2011년 2월 10일
These remarks are better done as Comments on the appropriate answer.
Hillary Omuga
2020년 1월 31일
0 개 추천
write a for loop to create an array named X. Each value in X is equal to its assaciated index value (a.k.a its position in the array) times 12 minus 1. The size of X is 52*1
카테고리
도움말 센터 및 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!