shifting column cell array of string into row
1 view (last 30 days)
Show older comments
Gopalakrishnan venkatesan
on 16 Jun 2015
Edited: Stalin Samuel
on 16 Jun 2015
I have a cell array of string c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... }
so i have c = 50*1
now i need to shift the cell array into c = 1*50
how can i do it using cell function or some other command??
is it possible??
Thanks a lot
0 Comments
Accepted Answer
Stalin Samuel
on 16 Jun 2015
Edited: Stalin Samuel
on 16 Jun 2015
c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... };
c=c';
0 Comments
More Answers (0)
See Also
Categories
Find more on Cell Arrays 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!