Subtraction between a matrix and a column vector
Mostrar comentarios más antiguos
So I have a matrix of the size 23x15 and a column vector of size 23x1. I need to subtract element 1 of the colum vector from the 1st row of the matrix, element 2 of the column vector from 2nd row of the matrix, and so on. Any suggestions about how I can do it?
Respuesta aceptada
Más respuestas (1)
Torsten
el 5 de Abr. de 2022
B = A - x
where A is your matrix and x is your vector.
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!