How do I merge squares

5 views (last 30 days)
abdullah al-dulaimi
abdullah al-dulaimi on 30 Oct 2022
Answered: Atsushi Ueno on 30 Oct 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.

Accepted Answer

KSSV
KSSV on 30 Oct 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

More Answers (1)

Atsushi Ueno
Atsushi Ueno on 30 Oct 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]}

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!