How to reverse the operation?
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Data Import from MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!