How do I merge squares
Show older comments
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
More Answers (1)
It can be achieved by cell array.
T = {[1,2];[3,4];[5,6]}
Categories
Find more on Creating and Concatenating Matrices 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!