could anyone help me to solve the issue

1 visualización (últimos 30 días)
jaah navi
jaah navi el 13 de Sept. de 2019
Editada: madhan ravi el 13 de Sept. de 2019
A=[2.1 2.2 2.3 2.4 2.5 2.6]
B=[0.49 0.48 0.47 0.47 0.47 0.47]
I want to have the desired result
A=[2.1 2.2 2.3 2.3 2.3 2.3]
As B has the same values starting from third place, A needs to have the value 2.3 at the same third place and it should be continued until the end.

Respuesta aceptada

madhan ravi
madhan ravi el 13 de Sept. de 2019
Editada: madhan ravi el 13 de Sept. de 2019
[~,~,c] = unique(B,'stable');
A = A(c)

Más respuestas (0)

Categorías

Más información sobre Discrete Math en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by