Equivalent of [C{:}] for vertcat
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Luca Amerio
el 21 de Dic. de 2016
Comentada: Matt J
el 28 de Dic. de 2016
To concatenate horizontally the content of a cell array we can use the very practice syntax [C{:}]. For example:
A = {(1:3) (4:7)};
B = [A{:}]
B =
1 2 3 4 5 6 7
Is there a way to obtain the same results in the vertical direction (except vertcat of course)
A = {(1:3)' (4:7)'};
B = ?
B =
1
2
3
4
5
6
7
0 comentarios
Respuesta aceptada
Más respuestas (3)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!