How to calculate number that satisfy the condition
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alya Z
el 11 de Dic. de 2017
Comentada: Alya Z
el 11 de Dic. de 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
0 comentarios
Respuesta aceptada
Walter Roberson
el 11 de Dic. de 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));
Más respuestas (0)
Ver también
Categorías
Más información sobre Bar Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!