save data as mat file

2 visualizaciones (últimos 30 días)
Rica
Rica el 4 de Feb. de 2013
Hi!
how could i svae many data, which have the same size in one mat file:
% for exemple: a=[1 2 3];
b=[5 4 6];
c=[2 5 8];
how could i save a b c as :d=[1 2 3;5 4 6; 2 5 8].thank you

Respuesta aceptada

Walter Roberson
Walter Roberson el 4 de Feb. de 2013
d = [a; b; c];

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by