How to count negative and postive values in a matrix?

조회 수: 50 (최근 30일)
trailokya
trailokya 2015년 8월 5일
댓글: trailokya 2015년 8월 5일
Sir, how can i get the mean and standard deviation and total numbers of negative values and similarly for positive values in a matrix A(i,j).Please help

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2015년 8월 5일
s=sign(A)
ipositif=sum(s(:)==1)
inegatif=sum(s(:)==-1)
  댓글 수: 4
Torsten
Torsten 2015년 8월 5일
편집: Torsten 2015년 8월 5일
m=mean(A(s==-1))
st=std(A(s==-1))
Best wishes
Torsten.
trailokya
trailokya 2015년 8월 5일
Thank you sir

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by