Thread Closed

MATLAB :: tolerance question

 
Share Thread Thread Tools
Apr14-10, 01:09 PM   #1
 
Recognitions:
Gold Membership Gold Member

MATLAB :: tolerance question


OK! I am not sure how to word this, but here goes:

Let's say I want to write a conditional like:

Code:
for i = 1:100
if myVar(i) == 4
do some stuff
break
end
The problem is...myVar might not ever equal exactly 4. It might be that myVar == 4.001 and that is fine; I would like it to execute the code.

Now, I know that I could give it a range like:

Code:
for i = 1:100
if myVar(i) < 4.002 && myVar(i) > 3.998
do some stuff
break
end
But is there a better way? Is there a function in MATLAB that takes my target value of 4 and my tolerance of .002 as its arguments? Or any other better ways?

Thanks!
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> King Richard III found in 'untidy lozenge-shaped grave'
>> Google Drive sports new view and scan enhancements
>> Researcher admits mistakes in stem cell study
Apr14-10, 10:22 PM   #2
 
Recognitions:
Gold Membership Gold Member
Science Advisor Science Advisor
I don't see anything wrong with the way you are doing it. If you want to reduce your two conditions to one condition, you can use absolute value like this:

Code:
target = 4; % whatever target you want
tol = 0.002; % whatever tolerance you want

if abs(myVar(i)-target) <= tol
.
.
.
or if you'd like to get rid of the loop and myVar is an array of values, you can do something like this:

Code:
index = find(abs(myVar-target) <= tol,1)
.
.
.
so that index would return the index of the first value in the myVar array to meet your criteria - but that may have nothing to do with what you are trying to do.

Other than that, I'm not aware of a function that does what you are asking - but if it exists, its code probably looks a lot like what you've written. Hope that helped a little.
Thread Closed
Thread Tools


Similar Threads for: MATLAB :: tolerance question
Thread Forum Replies
Question On Tolerance Mechanical Engineering 0
Tolerance Of Bearing Mechanical Engineering 6
What is tolerance? Electrical Engineering 1
total tolerance Introductory Physics Homework 1