deleting a full colum using
古いコメントを表示
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 件のコメント
Jan
2013 年 3 月 17 日
Please post the error message whenever you explain, that there is an error.
採用された回答
その他の回答 (1 件)
Locks
2013 年 3 月 17 日
0 投票
2 件のコメント
Azzi Abdelmalek
2013 年 3 月 17 日
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.
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!