How do I write a statement that will discard any values in an array if they are over a certain value?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I want to say that if my height variable is > 1 then not to return the value in my matrix?
3 comentarios
José-Luis
el 16 de Mayo de 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.
Respuestas (1)
Ken Atwell
el 16 de Mayo de 2013
I think you're looking for logical indexing:
heights = .1:.3:2
heights < 1
heights(heights<1)
0 comentarios
Ver también
Categorías
Más información sobre Data Type Identification en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!