How to perform the following commands?
1 次查看(过去 30 天)
显示 更早的评论
How to perform the following commands:
result1 = m(:,abs(m(2,:))< threshold ); .......... This line I want to exclude zero value also.(I mean if it zero ignore it and look at the next value)
[~,idx] = min(abs(result1(1,:))); ....... This line I want to exclude zero value also. (I mean if it zero ignore it and look at the next value)
3 个评论
Walter Roberson
2022-5-24
create a temporary vector that is abs() and replace 0 values with nan and min() that.
Or loop.
采纳的回答
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!