if condition for counting
13 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a list of numbers(double type stored in a variable. I want to see when a number is greater than '4', how can I disply that number.![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/523397/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/523397/image.png)
0 个评论
回答(2 个)
KALYAN ACHARJYA
2021-2-18
编辑:KALYAN ACHARJYA
2021-2-18
To display numbers more than 4, here var is the variable name of given data
num_data=var(var>4)
To count the numbers, which are more than 4
count_data=sum(var>4)
0 个评论
Waseem AL Aqqad
2021-2-18
编辑:Waseem AL Aqqad
2021-2-18
B=randi(10,1,815);
idx=find(B>4);
B(idx);
3 个评论
Waseem AL Aqqad
2021-2-19
By the way it's good to accept volunteers' answers if it helped you. Actually, You never did that as I can see from your MATLAB Answers profile.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!