How to calculate number that satisfy the condition

2 vues (au cours des 30 derniers jours)
Alya Z
Alya Z le 11 Déc 2017
Commenté : Alya Z le 11 Déc 2017
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

Réponse acceptée

Walter Roberson
Walter Roberson le 11 Déc 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));

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by