How to finding the second closest number in matrix?

3 次查看(过去 30 天)
I have a matrix looks like this:
A = [1990;1993;1998;2001;2004 ]
and I would like to find the closest value to f=1999 (in this case the first closest value is certainly 1998), but how can I find the second closest value (2001) after I found the first value, and then find the third value (2004), etc.
Thanks

回答(1 个)

Adam
Adam 2017-1-4
编辑:Adam 2017-1-4
[~,idx] = sort( abs( A - 1999 ) );
A( idx )
will give you all of them in order.

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by