Creating a Matrix that is a manipulation of another matrix
Mostra commenti meno recenti
Hi, I'm very new to Matlab, and I have a question about creating a matrix. If there is a matrix A = [a b ; c d], how do you create a matrix = [a -b ; c -d]? So the second column entries of A are multiplied by -1.
Thank you.
Risposta accettata
Più risposte (4)
Joseph Cheng
il 6 Ott 2015
Modificato: Joseph Cheng
il 6 Ott 2015
There are lots of ways how about element by element multiplication like:
x = magic(4)
trans = [ones(4,2) -ones(4,2)]
x.*trans
which if it gets complicated say corners and such you can build the trans matrix to whatever you want.
or by selecting the columns manually:
x(:,3:4) = -x(:,3:4)
Julian
il 6 Ott 2015
0 voti
Julian
il 6 Ott 2015
0 voti
1 Commento
Joseph Cheng
il 6 Ott 2015
so the indexing is something you should spend some time to read about to fully understand but its like:
x(row,column) so you can say x(2,3) which will specifically be the element of intersection of row 2 and column 3. so to replace one element you would just specify that one element. the : marker in the examples everyone is giving is the "all" marker for all rows/columns (depending on where it is)
x(:,2) is all rows in column 2
x(2,:) is for all columns for row 2.
Julian
il 6 Ott 2015
0 voti
Categorie
Scopri di più su Matrix Indexing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!