how can I delete a full row based on a if condition?
이전 댓글 표시
for example if I have a matrix with call (1) and putoption (2) data and I would like to have only the calloption data. Iwas thinking maybe I could run a for condition and create a new matrix just using the call data, is that possible?
채택된 답변
추가 답변 (3개)
Locks
2013년 3월 10일
편집: Walter Roberson
2013년 3월 10일
If your data is stored in a 150000x7 matrix D, you can build D_call and D_put as follows:
D_call = D(D(:,3)==1,:) ;
D_put = D(D(:,3)==2,:) ;
Locks
2013년 3월 10일
0 개 추천
댓글 수: 3
Azzi Abdelmalek
2013년 3월 17일
Sven, you have to accept the answer that helped you by clicking accept this answer
Jan
2013년 3월 18일
@Sven: You do not have to accept an answer, but it would be helpful for the readers and for the author of the answer. So please take the time to accept an answer, such that this question is marked as "solved".
Cedric
2013년 3월 18일
Thank you Azzi and Jan; I stopped making this kind of remarks, but I should have gone on. I appreciate that you took the time to do it!
카테고리
도움말 센터 및 File Exchange에서 Language Fundamentals에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!