rejection method

3 次查看(过去 30 天)
Raphael
Raphael 2012-5-28
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!

回答(1 个)

per isakson
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 ) =[];

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by