Borrar filtros
Borrar filtros

update vector with nubers from another vector

1 visualización (últimos 30 días)
Karl Persson
Karl Persson el 28 de Nov. de 2019
Comentada: Karl Persson el 28 de Nov. de 2019
Hi
I have a vector A = [ 2 4 6 10 15] and another vector B = [2.43 2.3 12 5.1]
How can I transform so that B = [2 2 10 6] with the help of A.
  2 comentarios
the cyclist
the cyclist el 28 de Nov. de 2019
Is the rule that for each value in B, you want the closest value in A?
Karl Persson
Karl Persson el 28 de Nov. de 2019
Yes! exactly.

Iniciar sesión para comentar.

Respuesta aceptada

the cyclist
the cyclist el 28 de Nov. de 2019
A = [ 2 4 6 10 15];
B = [2.43 2.3 12 5.1];
[~,idx] = min(abs(B'-A),[],2);
B = A(idx)

Más respuestas (0)

Categorías

Más información sobre Language Fundamentals 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!

Translated by