필터 지우기
필터 지우기

How to compare value for two variable?

조회 수: 10 (최근 30일)
Tan Wen Kun
Tan Wen Kun 2015년 12월 6일
편집: Tan Wen Kun 2015년 12월 6일
matrix=
1 1 2 2
1 1 2 2
1 1 2 2
I got a matrix that store label 1 and 2 have mean value
meanR(1) = 10.33
meanG(1) = 20.33
meanB(1) = 30.33
meanR(2) = 12.33
meanG(2) = 23.33
meanB(2) = 34.33
so how I can compare both label?
what is the function name in matlab for compare?
what is the syntax for and(& or &&) in if operation?
if compare((meanR(1),meanR(2)<=5) && (meanR(1),meanR(2)<=5) && (meanR(1),meanR(2)<=5))
chg all label 2 to 1
result =
1 1 1 1
1 1 1 1
1 1 1 1
  댓글 수: 2
Jan
Jan 2015년 12월 6일
The question is not clear. I cannot guess, what the "compare" operator should do. Why do you check if "meanR(2) <= 5"?
Tan Wen Kun
Tan Wen Kun 2015년 12월 6일
편집: Tan Wen Kun 2015년 12월 6일
I want to compare whether the meanR, meanG, meanB value of label 1 and label 2 is within 5 or not? If this 3 statement true then I assign label 2 to label 1.

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

답변 (1개)

dpb
dpb 2015년 12월 6일
I presume you intended the three variables, not the same variable three times...simplest would be to first change storage/naming to not have to deal with three separate variables but only one. So first write
mnRGB=[meanR;meanB;meanG]; % or better yet, define this way from git-go instead
Then, the test is simply
if all(diff(mnRGB,2)<=5))
matrix(matrix==2)=1;
end
Above is a signed comparison, if it's an absolute or magnitude-only test wanted, then encapsulate the diff() operation inside abs of course.
See
doc if
doc diff
doc all
for details on syntax and Matlab's definition of TRUE for arrays and vectors.

카테고리

Help CenterFile Exchange에서 AI for Signals에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by