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)
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

Réponse acceptée

Stephen23
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
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.
fatema hamodi
fatema hamodi le 16 Jan 2019
yes yes you are right , I fix it ,no I don't need the matrix data it was by mistake , it works now thank you very much !!

Connectez-vous pour commenter.

Plus de réponses (1)

madhan ravi
madhan ravi le 15 Jan 2019
Perhaps?
a(:,end:-1:1) % columns
a(end:-1:1,:) % rows
  5 commentaires

Connectez-vous pour commenter.

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!

Translated by