matrix
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I have a very large matrix. I want to know how many positive elements I have in the matrix, and how many negative elements (non-zero).
Thanks
0 commentaires
Réponse acceptée
Oleg Komarov
le 28 Mai 2012
idx = A < 0;
nnz( idx) % negative
nnz(~idx) % positive (including 0)
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Logical 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!