How do I merge squares

1 visualizzazione (ultimi 30 giorni)
abdullah al-dulaimi
abdullah al-dulaimi il 30 Ott 2022
Risposto: Atsushi Ueno il 30 Ott 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.

Risposta accettata

KSSV
KSSV il 30 Ott 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

Più risposte (1)

Atsushi Ueno
Atsushi Ueno il 30 Ott 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]}

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Prodotti

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by