How do I merge squares

1 visualización (últimos 30 días)
abdullah al-dulaimi
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.

Respuesta aceptada

KSSV
KSSV el 30 de Oct. de 2022
T= [1 2
3 4
5 6] ;
iwant = num2cell(T,2) ;
iwant{1}
ans = 1×2
1 2
iwant{2}
ans = 1×2
3 4

Más respuestas (1)

Atsushi Ueno
Atsushi Ueno el 30 de Oct. de 2022
It can be achieved by cell array.
T = {[1,2];[3,4];[5,6]}
T = 3×1 cell array
{[1 2]} {[3 4]} {[5 6]}

Categorías

Más información sobre Multidimensional 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!

Translated by