行列の中で範囲内の値の数を求めたい

4 Ansichten (letzte 30 Tage)
kuroshiba
kuroshiba am 17 Feb. 2023
Kommentiert: kuroshiba am 10 Mär. 2023
[14,5,11;15,10,6;5,12,9]のように3×3行列、9個の要素がある中、9以上20以下の要素は何個あるかを知りたいんですが、どのようなプログラムが必要なのでしょうか。
ご教授いただけると幸いです。

Akzeptierte Antwort

Atsushi Ueno
Atsushi Ueno am 17 Feb. 2023
A = [14,5,11;15,10,6;5,12,9]
A = 3×3
14 5 11 15 10 6 5 12 9
TF = (A>=9 & A<=20) % 9以上20以下の要素
TF = 3×3 logical array
1 0 1 1 1 0 0 1 1
sum(TF,'all') % 9以上20以下の要素は何個あるかを知りたい
ans = 6
  1 Kommentar
kuroshiba
kuroshiba am 10 Mär. 2023
ありがとうございます!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu データ型 finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!