how to find the number of negative cells in matrix ?

조회 수: 9 (최근 30일)
yosra
yosra 2022년 11월 12일
댓글: Voss 2022년 11월 12일
how to find the number of negative cells in matrix

채택된 답변

Voss
Voss 2022년 11월 12일
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
yosra
yosra 2022년 11월 12일
thanks it worked
Voss
Voss 2022년 11월 12일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by