How do you count points above the horizontal line?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Afua Amoako Dadey
el 20 de Jul. de 2020
Comentada: Afua Amoako Dadey
el 20 de Jul. de 2020
Hello everyone. Could you please help me write code to count points above the horizontal red line. Thanks.
0 comentarios
Respuesta aceptada
Arthur Roué
el 20 de Jul. de 2020
% Data array
Data = [....]
% Treshold
Limit = 0;
% Count
AboveLimit = sum(Data > Limit)
7 comentarios
Arthur Roué
el 20 de Jul. de 2020
I require some time to analyze your issue, can you create another MATLAB question ? This way, maybe me or another user will help you
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear Algebra 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!