How can we transpose a row vector into column vector in a cell
2 views (last 30 days)
Show older comments
Vinay Killamsetty
on 22 Aug 2019
Commented: Vinay Killamsetty
on 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 Comments
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Data Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!