Azzera filtri
Azzera filtri

matrix

1 visualizzazione (ultimi 30 giorni)
Mate 2u
Mate 2u il 28 Mag 2012
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

Risposta accettata

Oleg Komarov
Oleg Komarov il 28 Mag 2012
idx = A < 0;
nnz( idx) % negative
nnz(~idx) % positive (including 0)

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by