how to concatenate all the cell values horizondally in matlab
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
navan
el 3 de Abr. de 2016
Comentada: navan
el 3 de Abr. de 2016
I have a cell array
{[1;1;1] [2;2] [3;3;3;3] }
I want to convert the cell array into a single vector
[1,1,1,2,2,3,3,3,3]
Kindly help.
0 comentarios
Respuesta aceptada
per isakson
el 3 de Abr. de 2016
Editada: per isakson
el 3 de Abr. de 2016
One way
>> cac = {[1;1;1] [2;2] [3;3;3;3] };
>> cat( 1, cac{:} )'
ans =
1 1 1 2 2 3 3 3 3
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices 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!