フィルターのクリア

plus or minus calculation

11 ビュー (過去 30 日間)
Dylan Mecca
Dylan Mecca 2018 年 3 月 5 日
回答済み: James Tursa 2018 年 3 月 5 日
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?

採用された回答

James Tursa
James Tursa 2018 年 3 月 5 日
Maybe something like this is what you need:
if( all(abs(your_value - your_vector) <= 0.25) )
% etc
end

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by