reverse of row in matlab
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tanmoyee Bhattacharya
el 6 de Abr. de 2018
Respondida: Fabio Barbosa
el 6 de Abr. de 2018
If I have 23 columns and five rows like this
if true
% code
end
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
and I want is
if true
% code
end
5 4 3 2 1
5 4 3 2 1
5 4 3 2 1
If it is possible to do in matlab?
0 comentarios
Respuesta aceptada
Fabio Barbosa
el 6 de Abr. de 2018
Use the flip function: https://www.mathworks.com/help/matlab/ref/flip.html?s_tid=doc_ta
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!