行列の中で範囲内の値の数を求めたい
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
kuroshiba
el 17 de Feb. de 2023
Comentada: kuroshiba
el 10 de Mzo. de 2023
[14,5,11;15,10,6;5,12,9]のように3×3行列、9個の要素がある中、9以上20以下の要素は何個あるかを知りたいんですが、どのようなプログラムが必要なのでしょうか。
ご教授いただけると幸いです。
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 17 de Feb. de 2023
A = [14,5,11;15,10,6;5,12,9]
TF = (A>=9 & A<=20) % 9以上20以下の要素
sum(TF,'all') % 9以上20以下の要素は何個あるかを知りたい
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!