How do I sum a vector (row) to a matrix?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
JOSUE PÁNCHEZ
el 16 de Nov. de 2021
Comentada: Star Strider
el 16 de Nov. de 2021
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]
0 comentarios
Respuesta aceptada
Star Strider
el 16 de Nov. de 2021
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
.
2 comentarios
Más respuestas (1)
the cyclist
el 16 de Nov. de 2021
Editada: the cyclist
el 16 de Nov. de 2021
A=[1 0 0 1;
-1 0 1 1;
1 1 1 1];
B=[1 2 2 1];
A(1,:) = A(1,: ) + B
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!