I have a set of numbers 'N'.I need to find each optimal nearest value of each N , from a series.
If M=[1,2,3,4,5,6,7,8,910] a series.
N=[0.5,1.3,2.4] .I need find the optimal nearest point of each N from M.

댓글 수: 2

Stephen23
Stephen23 2019년 9월 20일
@ Silpa K: please show us the expected output using your example vectors.
Silpa K
Silpa K 2019년 9월 20일
like 1,2.If there are more numbers I need to find the optimal nearest points of each N.

댓글을 달려면 로그인하십시오.

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2019년 9월 20일

0 개 추천

M=[1,2,3,4,5,6,7,8,910]
N=[0.5,1.3,2.4]
[~,ii] = min(abs(M(:) - N(:)'));
out = M(unique(ii));

댓글 수: 1

Silpa K
Silpa K 2019년 9월 20일
Sir if I need to find two nearest values then how can I get.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

태그

질문:

2019년 9월 20일

댓글:

2019년 9월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by