Subtraction between a matrix and a column vector
Mostra commenti meno recenti
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?
Risposta accettata
Più risposte (1)
Torsten
il 5 Apr 2022
B = A - x
where A is your matrix and x is your vector.
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!