how to remove negative numbers from a vector
显示 更早的评论
Hi,
Let
A=[5 -0.4 0.1 0 100 -10]
in that i want to remove all -ve numbers and print refined vector A
please help !!!! -kiran mukund-
回答(1 个)
Use basic logical indexing:
>> A(A>=0)
ans =
5 0.1 0 100
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!