How to calculate number that satisfy the condition

2 views (last 30 days)
I have two 281x281 sets of matrix. A is a prescribed data whereby B is tracked data. I would like to calculate the difference of these two sets data and then calculate how many data that satisfy the condition.
For example, how many data satisfy condition <5, how many >5 and etc

Accepted Answer

Walter Roberson
Walter Roberson on 11 Dec 2017
C = double(A) - double(B);
nnz(C < 5)
nnz(C > 5)
Note: in some contexts, talking about the "difference" between the two would imply
C = abs(double(A) - double(B));

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!