shifting column cell array of string into row
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Stalin Samuel
2015-6-16
编辑:Stalin Samuel
2015-6-16
c = { 'a' ; 'b' ; 'c' ; 'd' ; .......... };
c=c';
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!