How to compare variable with a vector?

to_be_compared_with=[4160 13300 16800 30700 41000 63700 6050]; value=13311; %I want to find a value from vector close to 13311(Ans: 13300)

回答(1 个)

>> vec =[4160,13300,16800,30700,41000,63700,6050];
>> val = 13311;
>> [~,idx] = min(abs(vec-val));
>> vec(idx)
ans = 13300

类别

帮助中心File Exchange 中查找有关 Aerospace Blockset 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by