Ältere Kommentare anzeigen
HI, are there remove fun. to remove row from array ?
thanks
1 Kommentar
Jan
am 15 Aug. 2011
Such basic functions are explained exhaustively in the Getting Started chapters of the documentation. It is very recommended to read the instructions for such a powerful tool as MATLAB.
Antworten (2)
Jan
am 15 Aug. 2011
M = rand(3, 3);
M(2, :) = []; % Remove 2nd row
Daniel Shub
am 15 Aug. 2011
irow = 3;
x = magic(5)
x(irow, :) = []
Kategorien
Mehr zu Software Development Tools finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!