how to combine two different vectors into a cell array
3 ビュー (過去 30 日間)
古いコメントを表示
e.g
v=[3,6,4...]
b=[5,3,1,...]
C=cell array containing v and b
0 件のコメント
採用された回答
Image Analyst
2017 年 12 月 2 日
Try this:
C{1} = v;
C{2} = b;
If that's not what you want, then be more explicit.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!