Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

James Tursa
James Tursa il 16 Mag 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;

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by