deleting a full colum using
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a matrix with several optionprice data. Now I am trying to delete rows based on a for loop and if criteria. if the value of column 8 is >1.1 or <0.9, the whole row should be deletet. I have used the following code, but I always get an error message:
for i=1:numel(matrix)
if(matrix(i,8)>1.1)
matrix(i,:) = [];
end
end
1 Kommentar
Akzeptierte Antwort
Jan
am 17 Mär. 2013
Bearbeitet: Jan
am 17 Mär. 2013
numel(matrix) is the number of all elements. When you have deleted some rows already, the matrix has less elements and matrix(i,8) might be not existing anymore already.
You do not need a loop, to solve this problem:
matrix(matrix(:, 8) > 1.1, :) = []
0 Kommentare
Weitere Antworten (1)
Locks
am 17 Mär. 2013
2 Kommentare
Azzi Abdelmalek
am 17 Mär. 2013
Sven, if the answer helped, click on accept this answer. Also, to add a comment, click on comment on this answer just under the answer.
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements 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!