Subtraction between a matrix and a column vector
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (1)
Torsten
le 5 Avr 2022
B = A - x
where A is your matrix and x is your vector.
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!