How do I do greater than and less than in the same command then find the size?
Show older comments
I need to find the number of values that fall between two values, i.e. number of seisms that were between 7 and 8 magnitude, out of 11655 total values. size(7<=mag<=8)
Accepted Answer
More Answers (1)
Roger Stafford
on 24 Apr 2016
This is very elementary matlab. Assuming 'mag' is a vector, do this:
count = sum((7<=mag)&(mag<=8));
5 Comments
Lora Priest Dutheil
on 24 Apr 2016
Star Strider
on 24 Apr 2016
How could they give different results? They’re both the same code!
Lora Priest Dutheil
on 25 Apr 2016
Roger Stafford
on 25 Apr 2016
@Lora: It takes ingenuity to make an innocuous line like
count = sum((7<=mag)&(mag<=8));
give rise to an error message. Let me think of the ways.
1) An incomplete copy leading to unbalanced parentheses;
2) Naming a variable 'sum';
3) Failing to evaluate 'mag' in advance;
4) Having 'mag' be non-numeric and incomparable with numbers.
What exactly did your error message state, and did it actually refer to the above line?
Lora Priest Dutheil
on 25 Apr 2016
Categories
Find more on Creating and Concatenating Matrices 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!