How to reverse the operation?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Let
A = [1 2 5 4 3];
B = [ 2 5 1];
AA = A;
for i = 1:numel(B)
AA([i B(i)]) = AA([B(i) i])
end
Is there reverse way i.e, from the output AA can I get initial input A?
0 Commenti
Risposta accettata
Jan
il 7 Apr 2022
A = [1 2 5 4 3];
B = [2 5 1];
AA = A;
for i = 1:numel(B)
AA([i, B(i)]) = AA([B(i), i]);
end
AA
for i = numel(B):-1:1
AA([i, B(i)]) = AA([B(i), i]);
end
AA
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Spline Postprocessing in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!