How do I merge squares
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
abdullah al-dulaimi
el 30 de Oct. de 2022
Respondida: Atsushi Ueno
el 30 de Oct. de 2022
T=
1 2
3 4
5 6
Result =
[1,2]
[3,4]
[5,6]
I want to get the result,
result will be one coluom.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Atsushi Ueno
el 30 de Oct. de 2022
It can be achieved by cell array.
T = {[1,2];[3,4];[5,6]}
0 comentarios
Ver también
Categorías
Más información sobre Matrices and Arrays 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!