How to calculate number that satisfy the condition
2 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
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)
See Also
Categories
Find more on Bar Plots 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!