フィルターのクリア

if condition for counting

11 ビュー (過去 30 日間)
Waqas Siddique
Waqas Siddique 2021 年 2 月 18 日
コメント済み: Waseem AL Aqqad 2021 年 2 月 19 日
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.

回答 (2 件)

KALYAN ACHARJYA
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)

Waseem AL Aqqad
Waseem AL Aqqad 2021 年 2 月 18 日
編集済み: Waseem AL Aqqad 2021 年 2 月 18 日
B=randi(10,1,815);
idx=find(B>4);
B(idx);
  3 件のコメント
Rik
Rik 2021 年 2 月 18 日
Did you read the documentation for the find function?
Waseem AL Aqqad
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Object Programming についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by