how to find the number of negative cells in matrix ?

9 vues (au cours des 30 derniers jours)
yosra
yosra le 12 Nov 2022
Commenté : Voss le 12 Nov 2022
how to find the number of negative cells in matrix

Réponse acceptée

Voss
Voss le 12 Nov 2022
A = randn(5) % 5-by-5 random matrix
A = 5×5
-0.1182 1.1458 -0.7931 -1.2282 -0.4492 1.9749 -0.0542 -0.3788 0.2144 -1.0333 1.3979 1.2310 2.3602 0.7574 -0.1836 0.6968 -0.3670 -1.5154 0.6693 -0.6576 0.4933 1.8072 2.2063 0.2762 -1.3458
nnz(A < 0) % number of elements of A that are < 0
ans = 12
  2 commentaires
yosra
yosra le 12 Nov 2022
thanks it worked
Voss
Voss le 12 Nov 2022
You're welcome!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays 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!

Translated by