How to change order of a table in matlab
4 ビュー (過去 30 日間)
古いコメントを表示
how to change order of table in matlab the order is 13x1 or of 14x2 etc and want to change order
採用された回答
Image Analyst
2018 年 7 月 7 日
You can delete columns in a table or add new ones just like any other matrix.
t(:, 2) = []; % Delete column 2.
You can use the table() function to create new tables with new data vectors.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!