How to compare value for two variable?
14 ビュー (過去 30 日間)
古いコメントを表示
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
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"?
回答 (1 件)
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.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!