matrix operation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Grzegorz Knor
am 14 Sep. 2011
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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!