converting matrix to column
4 ビュー (過去 30 日間)
古いコメントを表示
How can i convert a 4 columned matrix to 4 vectors?
0 件のコメント
採用された回答
Image Analyst
2014 年 12 月 24 日
col1 = array(:, 1);
col2 = array(:, 2);
col3 = array(:, 3);
col4 = array(:, 4);
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!