rejection method
조회 수: 2 (최근 30일)
이전 댓글 표시
Hey all,
i created a 2xn matrix where the first row indicates time uniformly distributed... However i want to delete from the matrix columnwise if in the first row the time takes the value 0. i tried to do this using an if algorithm however it seems to reject all values and i end up with an empty matrix. does anybody know how to fix this?
Thanks for your help!
댓글 수: 0
답변 (1개)
per isakson
2012년 5월 28일
Firstly, it would probably be more efficient to use a .<nx2> matrix. Matlab is column oriented.
Try
M( :, M(:,1)==0 ) =[];
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!