How do I write a statement that will discard any values in an array if they are over a certain value?
Show older comments
I want to say that if my height variable is > 1 then not to return the value in my matrix?
3 Comments
Could you be more precise.. some code perhaps will help.. please go over this tutorial on how to ask a question (on Answers) and get a fast answer - http://www.mathworks.com/matlabcentral/answers/6200/
Seth
on 16 May 2013
José-Luis
on 16 May 2013
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.
Answers (1)
Ken Atwell
on 16 May 2013
I think you're looking for logical indexing:
heights = .1:.3:2
heights < 1
heights(heights<1)
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!