How to replace a column vector in matrix
82 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Danny Maefengea
am 28 Aug. 2020
Kommentiert: Phuwanut Pataratawinun
am 6 Mär. 2022
A = [1 -4 1;4 -1 2;2 2 -3]
B = [6;-1;-20]
I want to replace part of matrx A i.e (1 -4 1) with B.
How can I do this?
Thank you for your help.
2 Kommentare
Stephen23
am 28 Aug. 2020
"How can I do this? "
>> A = [1,-4,1;4,-1,2;2,2,-3]
A =
1 -4 1
4 -1 2
2 2 -3
>> B = [6;-1;-20];
>> A(1,:) = B
A =
6 -1 -20
4 -1 2
2 2 -3
kelly lim
am 3 Dez. 2021
how do you set the name of the new matrix , instead of A can you change it to Ax without changing the name of the original matrix. Please demosntrate thank you
Akzeptierte Antwort
Sara Boznik
am 28 Aug. 2020
A = [1 -4 1;4 -1 2;2 2 -3]
B = [6;-1;-20]
B=B'
A(1,:)=B'
4 Kommentare
kelly lim
am 3 Dez. 2021
how do you set the name of the new matrix , instead of A can you change it to Ax without changing the name of the original matrix. Please demosntrate thank you
Phuwanut Pataratawinun
am 6 Mär. 2022
If you want changed matrix Ax without changing matrix A, just copy the contents of matrix A over to a new matrix Ax, then do the same replacement.
A = [1 -4 1;4 -1 2;2 2 -3]
B = [6;-1;-20]
B = B'
Ax = A
Ax(1,:) = B'
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!