matrix operation
1 回表示 (過去 30 日間)
古いコメントを表示
hi i am using guide.here i use a matrix of size 50 by 50. I want to delete a particular column of that matrix . the column no is given by user & that column will be deleted & save the new matrix to a text file. How i do that. Plz plz help me.
0 件のコメント
採用された回答
Grzegorz Knor
2011 年 9 月 14 日
You can delete column in this way:
a = rand(50);
a(:,3) = [];% deletes 3rd column
For other questions see documentation:
doc input
doc save
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!