how to find the number of negative cells in matrix ?

4 views (last 30 days)
how to find the number of negative cells in matrix

Accepted Answer

Voss
Voss on 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

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!