Borrar filtros
Borrar filtros

how to save array values in .mat file in 1 column and multiple rows instead of multiple columns in 1 row.

1 visualización (últimos 30 días)
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|

Respuesta aceptada

James Tursa
James Tursa el 22 de Sept. de 2015
Transpose j before saving it. E.g.,
j = j.'; % <-- transpose j
save('j.mat', 'j');

Más respuestas (0)

Categorías

Más información sobre Workspace Variables and MAT-Files en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by