could anyone help me to solve the issue

1 view (last 30 days)
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.

Accepted Answer

madhan ravi
madhan ravi on 13 Sep 2019
Edited: madhan ravi on 13 Sep 2019
[~,~,c] = unique(B,'stable');
A = A(c)

More Answers (0)

Categories

Find more on Discrete Math in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!