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

 Akzeptierte Antwort

Oleg Komarov
Oleg Komarov am 28 Mai 2012

1 Stimme

idx = A < 0;
nnz( idx) % negative
nnz(~idx) % positive (including 0)

Weitere Antworten (0)

Kategorien

Mehr zu Sparse Matrices finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by