Filter löschen
Filter löschen

How to make a matrix upside down?

2 Ansichten (letzte 30 Tage)
Rengin
Rengin am 26 Jan. 2016
Beantwortet: Walter Roberson am 26 Jan. 2016
% Dear Users,
% I have such an matrix below:
A= [1;4;5;7];
% I want to make it upside down:
B= [7;5;4;1];
% Is there any shor cut to do it?
% Thanks!

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 26 Jan. 2016
B = flipud(A);

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by