shifting column cell array of string into row
1 回表示 (過去 30 日間)
古いコメントを表示
Gopalakrishnan venkatesan
2015 年 6 月 16 日
編集済み: Stalin Samuel
2015 年 6 月 16 日
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!