ExcelにおけるC​OUNTIFSはどう​コードできますか

「OK」or「NG」が表示されている列があり,
何番目から何番目までの列で,”OK”のセルが何個あるか,というのを数えるときに,
ExcelではCOUNTIFSで指定範囲,指定条件を複数指定して設定できますが,
MatLabではIF関数などを使って上手く作れるでしょうか.

 Respuesta aceptada

Hernia Baby
Hernia Baby el 18 de Abr. de 2021

1 voto

categoricalに変更してカウントはいかがでしょうか?
A = categorical({'NG' 'OK' 'OK' 'OK' 'NG'});
cnt = sum(A=='OK')
cnt = 3
NGもまとめて見たいよって場合はcountcatsをお勧めします

1 comentario

KO
KO el 19 de Abr. de 2021
天才的です。ありがとうございます。

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Data Import from MATLAB en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

KO
el 18 de Abr. de 2021

Comentada:

KO
el 19 de Abr. de 2021

Community Treasure Hunt

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

Start Hunting!