Nearest value from an array.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Silpa K
el 20 de Sept. de 2019
Comentada: Silpa K
el 20 de Sept. de 2019
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 comentarios
Respuesta aceptada
Andrei Bobrov
el 20 de Sept. de 2019
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));
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with Optimization Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!