How can we transpose a row vector into column vector in a cell
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Vinay Killamsetty
am 22 Aug. 2019
Kommentiert: Vinay Killamsetty
am 22 Aug. 2019
I want to convert a row vector in my defined cell into coulumn vector
A{1} = [1 2 3 4];
A{2} = [5 6 7 8];
I want to convert them into
A{1}=[1;2;3;4];
A{2}=[5;6;7;8];
Can this be done with a simple function
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!