How do you count points above the horizontal line?
1 回表示 (過去 30 日間)
古いコメントを表示
Afua Amoako Dadey
2020 年 7 月 20 日
コメント済み: Afua Amoako Dadey
2020 年 7 月 20 日
Hello everyone. Could you please help me write code to count points above the horizontal red line. Thanks.
0 件のコメント
採用された回答
Arthur Roué
2020 年 7 月 20 日
% Data array
Data = [....]
% Treshold
Limit = 0;
% Count
AboveLimit = sum(Data > Limit)
7 件のコメント
Arthur Roué
2020 年 7 月 20 日
I require some time to analyze your issue, can you create another MATLAB question ? This way, maybe me or another user will help you
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!