Delete row from Matrix
304 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a Matrix of 400 rows and 40 columns. I want to completely remove rows 3 and 9 to get a matrix with 398 rows. How can I do it in MATLAB.
3 Kommentare
Yuvraj Praveen Soni
am 9 Dez. 2019
if assume A is your matrix with 400 rows and 40 column,
To remove 3rd row
a(3,:)=[];
now your 9th row become 8th row;
a(8,:)=[];
and with this your 3rd and 9th row will be deleted, you can also check the size by
size(a);
Thank You
Akzeptierte Antwort
Jan
am 22 Jun. 2012
Bearbeitet: MathWorks Support Team
am 9 Nov. 2018
If you have a matrix A and want to delete the 3rd and 9th rows, you can use the command:
A([3,9],:) = [];
5 Kommentare
Walter Roberson
am 18 Jun. 2019
Katarina, I am not clear as to where you are seeing anything about deleting columns in this Answer?
If you want to delete a column then name it in the second index:
A(:,k) = [];
Weitere Antworten (5)
Peter
am 30 Nov. 2012
"I have a Matrix of 400 rows and 40 columns.I want to completely remove rows 3 and 9 to get a matrix with 398 rows. How can I do it in MATLAB."
Matrix_2 = Matrix_1( [1:2,4:8,10:end] , : )
Best,
Pete
1 Kommentar
Dan W
am 23 Jan. 2015
I'm not sure if this is new syntax or not, but it works with R2012a and it's fast and simple.
x = rand(100);
tic;
x([3,9],:) = [];
toc; % Elapsed time is 0.000230 seconds.
3 Kommentare
Andrei Bobrov
am 21 Jun. 2012
m = m(setdiff(1:size(m,1),[3,9]),:);
5 Kommentare
Jan
am 22 Jun. 2012
SETDIFF has a remarkable overhead. ISMEMBER is smarter and twice as fast for a 100x100 matrix:
m = m(~ismember(1:size(m, 1), [3,9]), :);
pradeep kumar
am 30 Aug. 2014
@ Andrei Bobrov , @ Walter Roberson,@ Jan Simson . how delete a particular row and column of a matrix by using "setdiff" . Say m= [1 2 3 4 ; 5 6 7 8; 9 10 11 12 ; 13 14 15 16 ]. i want to delete 1st row and 2nd column to obtain m=[5 7 8; 9 11 12;13 15 16]
Alireza Rezvani
am 19 Jun. 2016
sry, how i can Deleting individual columns of a matrix, any body know?
2 Kommentare
Muhammad Usman Saleem
am 19 Jun. 2016
Assume out is your matrix and you want to delete its first column, try this code,
out(:,1) = [];
LISSA DUVVU
am 29 Sep. 2018
i want to delete all columns data where the 4th row contains number 7
1 Kommentar
Jan
am 7 Okt. 2018
Please do not attach a new (and very vague) question in the section for answers of another questions. Such thread-hijacking is confusing only, because it is not longer clear, to which question an answer belong. Please open your own question and delete this pseudo-answer. Thanks.
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!