A simple matrix question
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rengin
le 5 Août 2019
Réponse apportée : madhan ravi
le 5 Août 2019
%Dear users,
%Imagine that I have a matrix of A=[1,2,3,4,5]
%Is there any short-cut to get the matrix of B=[5,4,3,2,1]?
%Thanks in advance
0 commentaires
Réponse acceptée
Joel Handy
le 5 Août 2019
A = [1 2 3 4 5];
B = fliplr(A) % Flip matrix in left/right direction
A = [1; 2; 3; 4; 5];
B = flipud(A) % Flip matrix in up/down direction
0 commentaires
Plus de réponses (3)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!