Finding 4 closest values to a value in an array
    4 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    AAS
 el 28 de Sept. de 2020
  
    
    
    
    
    Comentada: Sindar
      
 el 29 de Sept. de 2020
            How do I find multiple points close to a particular number in an array? I can do this for one value but how do I extend that?
0 comentarios
Respuesta aceptada
  Sindar
      
 el 28 de Sept. de 2020
        use mink
[~,idx] = mink(abs(data-find_point),5);
data(idx)
2 comentarios
  Sindar
      
 el 29 de Sept. de 2020
				You'd play around with (data-find_point) without the abs(). Algorithm something like:
- separate data into values equal to, larger than, smaller than find_point
- keep all equal to
- find smallest 2 positive error
- find largest 2 negative error
Más respuestas (0)
Ver también
Categorías
				Más información sobre Shifting and Sorting Matrices 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!

