How do you count points above the horizontal line?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Afua Amoako Dadey
il 20 Lug 2020
Commentato: Afua Amoako Dadey
il 20 Lug 2020
Hello everyone. Could you please help me write code to count points above the horizontal red line. Thanks.
0 Commenti
Risposta accettata
Arthur Roué
il 20 Lug 2020
% Data array
Data = [....]
% Treshold
Limit = 0;
% Count
AboveLimit = sum(Data > Limit)
7 Commenti
Arthur Roué
il 20 Lug 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Linear Algebra in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!