How do I merge squares
Afficher commentaires plus anciens
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.
Réponse acceptée
Plus de réponses (1)
It can be achieved by cell array.
T = {[1,2];[3,4];[5,6]}
Catégories
En savoir plus sur Matrix Indexing dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!