ExcelにおけるCOUNTIFSはどうコードできますか
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
「OK」or「NG」が表示されている列があり,
何番目から何番目までの列で,”OK”のセルが何個あるか,というのを数えるときに,
ExcelではCOUNTIFSで指定範囲,指定条件を複数指定して設定できますが,
MatLabではIF関数などを使って上手く作れるでしょうか.
0 commentaires
Réponse acceptée
Hernia Baby
le 18 Avr 2021
categoricalに変更してカウントはいかがでしょうか?
A = categorical({'NG' 'OK' 'OK' 'OK' 'NG'});
cnt = sum(A=='OK')
cnt = 3
NGもまとめて見たいよって場合はcountcatsをお勧めします
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur スプレッドシート dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!