concatenate mutiple tables by repetative process
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
George
el 16 de Oct. de 2013
Hello
I have a very large number of individual tables at my workspace, and I would like to concatenate them into a larger one by vertically combining all of them.
I have seen vertcat but i think it doesn't do so many repetition
The form of the final table is supposed to be =[A;B;...;n], does any body know of a way to automatically concatenate them.
regards
George
1 comentario
Respuesta aceptada
Jos (10584)
el 16 de Oct. de 2013
How are these tables stored in your workspace? Do they all have an individual name (like Table1, MyOtherTable, B, DDDDD, ...)? Can you somehow generate these table differently, so they are all stored in a cell array or an array of structs? Then it would be easy, making use of comma-separated list expansion :
% cell array example
C{1} = rand(3,4) ;
C{2} = ones(2,4) ;
C{3} = zeros(4,4) ;
vertcat(C{:})
% structure array example
S(1).data = rand(2,3) ;
S(2).data = zeros(3,3) ;
S(3).data = ones(1,3) ;
vertcat(S.data)
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical 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!