Hi, how do I cause the following code to recognize that 92 for q and 92 for v are both passing scores, right now it returns false.

조회 수: 1 (최근 30일)
function tf = eligible( v,q )
%ELIGIBLE Summary of this function goes here
% Detailed explanation goes here
tf ='false';
avg = (v+q)/2;
if avg >=92
if v>88 && q>88
tf ='true';
end
end
end
Hi, how do I cause the following code to recognize that 92 for q and 92 for v are both passing scores, right now it returns false but it should return true for 92 for q and v
  댓글 수: 2
DJ V
DJ V 2016년 11월 25일
편집: DJ V 2016년 11월 25일
function tf = eligible( v,q )
%ELIGIBLE Summary of this function goes here \
% Detailed explanation goes here
tf ='false';
avg = (v+q)/2;
if avg >=92
if v>88 && q>88
tf ='true';
end
end
end
Here is the code.
dpb
dpb 2016년 11월 25일
>> eligible(92,92)
ans =
true
>>
seems to work as expected here. Perhaps you've not clear ed an earlier edit that doesn't work correctly from memory? Or the copy you're executing isn't the same as this one...try
which eligible % to see who's actually the one being found.

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

답변 (2개)

Image Analyst
Image Analyst 2016년 11월 25일
Don't put quotes around true and false. That's setting them equal to character arrays, which you don't want. You want the boolean/logical values.
  댓글 수: 2
dpb
dpb 2016년 11월 25일
Good point; mayhaps that's the issue, not the logic as I read it. If his test were
if elgible(92,92)
dosomething
else
somethingnottheabovesay
end
he'd always get the else clause despite seeing 'true' as the output...

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


Walter Roberson
Walter Roberson 2016년 11월 25일
Are you certain that the values you are passing in are exactly 92? If they are exactly 92, then the way you calculate the average and compare that to 92 should work, but if the values are even one significant bit less than 92, then even though they would look like 92 when displayed, their average would be less than 92 and so the comparison you used.
n92 = 92 * (1-eps);
>> (n92+n92)/2 - 92
ans =
-1.4210854715202e-14

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by