How to swap elements of the first column of the S matrix with the first line elements?

1 view (last 30 days)
Hi I have a matrix
A=[1 2 3;
4 5 6;
7 8 9]
but I want to switch the first column with first line like this
A=[1 4 7;
2 5 6;
3 8 9].
What it's the fast way to do it? Any help is appreciated! Thank you

Accepted Answer

James Tursa
James Tursa on 16 May 2018
If only the 1st column and row are involved, e.g. a simple swap:
A1 = A(:,1);
A(:,1) = A(1,:);
A(1,:) = A1;

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!