Clear Filters
Clear Filters

How do I get the closest values of an array stored for a particular input ?

1 view (last 30 days)
Hello all,
I have an array A = [180 170 160 150 140 130] and b = 165... how do I determine the closest positions and values of b from A i.e. what function should I use to get the answer as 170 & 160.
Thank you for your help in advance.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 17 Aug 2016
Edited: Azzi Abdelmalek on 17 Aug 2016
A = [180 170 160 150 140 130]
b=165
a1=min(A(A>b))
a2=max(A(A<b))

More Answers (1)

Thorsten
Thorsten on 17 Aug 2016
[~, ind]= sort(abs(A-b));
A(ind(1:2))

Tags

Community Treasure Hunt

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

Start Hunting!