how to flip a general square matrix ( it could have even or odd number of rows/cols ) from it's center in matlab ?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
fatema hamodi
le 15 Jan 2019
Commenté : fatema hamodi
le 16 Jan 2019
hi all
I have a general matrix , I want to flip the last half of it starting from it's center in matlab
To be clear ,I attach an image
I try the following
A=[1,2,3,4,5;6,7,8,9,10;11,12,13,14,15;16,17,18,19,20;21,22,23,24,25]
num_of_row=length(A(:,1))
if( mod(2,num_of_row)==0)
k=M/2;
else
k=(M-1)/2;
end
fliplr(A)
![flip.jpeg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/200766/flip.jpeg)
0 commentaires
Réponse acceptée
Stephen23
le 16 Jan 2019
>> M = [1,2,3,4,5;2,6,7,9,10;3,7,11,12,13;4,9,12,16,20;8,10,13,20,25]
M =
1 2 3 4 5
2 6 7 9 10
3 7 11 12 13
4 9 12 16 20
8 10 13 20 25
>> X = [5,4,1,2,3];
>> Z = M(X(end:-1:1),X)
Z =
13 12 3 7 11
10 9 2 6 7
5 4 1 2 3
20 16 4 9 12
25 20 8 10 13
4 commentaires
Stephen23
le 16 Jan 2019
Modifié(e) : Stephen23
le 16 Jan 2019
"but why this way doesn't work in general "
What I showed does work in general: any valid set of indices can be used to move around the rows and columns of any matrix, exactly as I showed in my answer.
For some unknown reason you tried to use the matrix data itself as indices, which is totally unrelated to anything in my answer, and totally unrelated to anything in your question.
"Subscript indices must either be real positive integers or logicals."
That error message tells us that the indes values that you used are not valid indices for that matrix. If X is supposed to be a set of indices, why are you creating this by concatenting a (whatever that is) with the first row of the matrixc data?:
X = [a,row_1(1:mid-1)];
% ^ supposed to be indices, for M(X(end:-1:1),X).
% ^ what is this?
% ^^^^^ why are you using matrix data as indices?
Unless you expect the first row to contain indices, this does not make sense. You certainly did not explain this in your question or any of your images. Please explain what you are trying to achieve.
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Logical 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!