how to save array values in .mat file in 1 column and multiple rows instead of multiple columns in 1 row.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Muhammad Umer
am 22 Sep. 2015
Beantwortet: James Tursa
am 22 Sep. 2015
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 Kommentare
Akzeptierte Antwort
James Tursa
am 22 Sep. 2015
Transpose j before saving it. E.g.,
j = j.'; % <-- transpose j
save('j.mat', 'j');
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!