Azzera filtri
Azzera filtri

could anyone help me to solve the issue

2 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

madhan ravi
madhan ravi il 13 Set 2019
Modificato: madhan ravi il 13 Set 2019
[~,~,c] = unique(B,'stable');
A = A(c)

Più risposte (0)

Categorie

Scopri di più su Discrete Math in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by