combining variables into one variable
Mostrar comentarios más antiguos
How to combine several variables into one variable? I have 28 variables with the same amount of data (tables 125x121) and I want to transform that into a one variable. Each variable is 125x121 double. I want to combine them all and get 28x125x121 double. How can I do that?
Respuesta aceptada
Más respuestas (1)
David Sanchez
el 21 de Ag. de 2014
Editada: David Sanchez
el 21 de Ag. de 2014
your_Combination = zeros(28,125,121); % initialize the final variable
Now you have several options depending on your data:
your_Combination = (1,:,:,) = table_1;
your_Combination = (2,:,:,) = table_2;
...
and so on
You could do it in a for-loop in case your tables allow it:
for k = 1:28
your_Combination = (k,:,:,) = table(k);
end
It all depends on the format of your tables.
1 comentario
Janis
el 21 de Ag. de 2014
Categorías
Más información sobre Tables en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!