plus or minus calculation
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Dylan Mecca
am 5 Mär. 2018
Beantwortet: James Tursa
am 5 Mär. 2018
Hi everyone,
I am trying to take a value, and subtract a vector from it. I want to then take that answer to check if it is within plus or minus a value of 0.025. Is there a function built into matlab for this? If not, will anybody be able to help me put something together?
0 Kommentare
Akzeptierte Antwort
James Tursa
am 5 Mär. 2018
Maybe something like this is what you need:
if( all(abs(your_value - your_vector) <= 0.25) )
% etc
end
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!