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!