How do you count points above the horizontal line?
1 次查看(过去 30 天)
显示 更早的评论
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!