how to save array values in .mat file in 1 column and multiple rows instead of multiple columns in 1 row.
조회 수: 1 (최근 30일)
이전 댓글 표시
for i=1:10
j(i)=i*5:
end
j = sort( j );
save('j.mat', 'j');
values are storing in .mat file
5 | 10 | 15 | 20 | ...... | 45 | 50 |
how can i store these values like this
5 |
10|
15|
.
.
. |
50|
댓글 수: 0
채택된 답변
James Tursa
2015년 9월 22일
Transpose j before saving it. E.g.,
j = j.'; % <-- transpose j
save('j.mat', 'j');
댓글 수: 0
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!