If I have
A=[1 0 0 1;
-1 0 1 1;
1 1 1 1]
B=[1 2 2 1]
How do I add the vector B to the 1st row of A so I get:
A=[2 2 2 3;
-1 0 1 1;
1 1 1 1]

 Akzeptierte Antwort

Star Strider
Star Strider am 16 Nov. 2021

0 Stimmen

This involves a bit of indexing.
Note that the rest of ‘A’ is unchnaged, and onlly ‘A(1,:)’ is involved in the operation.
A=[1 0 0 1;
-1 0 1 1;
1 1 1 1];
B=[1 2 2 1];
A(1,:) = A(1,:) + B
A = 3×4
2 2 2 2 -1 0 1 1 1 1 1 1
.

2 Kommentare

JOSUE PÁNCHEZ
JOSUE PÁNCHEZ am 16 Nov. 2021
Thank you so much!!!!
Star Strider
Star Strider am 16 Nov. 2021
As always, my pleasure!
.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

the cyclist
the cyclist am 16 Nov. 2021
Bearbeitet: the cyclist am 16 Nov. 2021

0 Stimmen

A=[1 0 0 1;
-1 0 1 1;
1 1 1 1];
B=[1 2 2 1];
A(1,:) = A(1,: ) + B
A = 3×4
2 2 2 2 -1 0 1 1 1 1 1 1

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by