help on making a table or stringing data
조회 수: 3 (최근 30일)
이전 댓글 표시
I have c= 4 5 6 and there is a loop where c changes so the next one is c= 8 3 19 and it goes so on 16 times total. how do i make the first number of every c equal to a matrix called a0 that is a 16x1 and the next column called a2 that is 16x 1 and a2 that is 16x 1 into a table?
댓글 수: 0
답변 (1개)
Walter Roberson
2012년 7월 24일
all_c = [a0, a1, a2];
Then after that, the K'th iteration would use c = all_c(K,:)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!