How do I write a statement that will discard any values in an array if they are over a certain value?
2 次查看(过去 30 天)
显示 更早的评论
I want to say that if my height variable is > 1 then not to return the value in my matrix?
3 个评论
José-Luis
2013-5-16
It is easier to import everything to Matlab and then do the processing. Alternatively you could preprocess in Excel if you are more comfortable doing that.
回答(1 个)
Ken Atwell
2013-5-16
I think you're looking for logical indexing:
heights = .1:.3:2
heights < 1
heights(heights<1)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!