Help with Matrix logic and indexing

1 view (last 30 days)
Trying to Try
Trying to Try on 27 Mar 2022
Answered: Stephen23 on 27 Mar 2022
how do i look through a matrix and count how many times this conditon occuers ( >= 40 & <= 50)

Answers (2)

Image Analyst
Image Analyst on 27 Mar 2022
Use sum():
mask = m >= 40 & m <= 50; % Works for vectors or matrices where m is your array.
count = sum(mask(:))
  2 Comments
Trying to Try
Trying to Try on 27 Mar 2022
Thank you so much ive wasted to much of my day on this one
Image Analyst
Image Analyst on 27 Mar 2022
Can you then click the "Accept this answer" link? Thanks in advance. 🙂

Sign in to comment.


Stephen23
Stephen23 on 27 Mar 2022
cnt = nnz(m>= 40 & m<= 50)

Categories

Find more on Resizing and Reshaping 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!