Multiplying each column of a matrix with a specific value

30 vues (au cours des 30 derniers jours)
Areesh Adil
Areesh Adil le 4 Fév 2020
Commenté : Areesh Adil le 4 Fév 2020
I have a matrix
mat=[2,1,0,0;1,0,0,0;0,0,0,1]
I want to multiply the first column by 25, the second column by 5, the third column by 10 and the fourth column by 1 in a way that I get:
mat=[50,5,0,0;25,0,0,0;0,0,0,1]
Also, can the answer be generalized as I might end up adding more rows later on.
Thanks

Réponse acceptée

James Tursa
James Tursa le 4 Fév 2020
Modifié(e) : James Tursa le 4 Fév 2020
mat=[2,1,0,0;1,0,0,0;0,0,0,1]; % 2D matrix
f = [25,5,10,1]; % row vector
result = f .* mat; % element-wise multiply with virtual expansion of row vector
If you have an earlier version of MATLAB, then use bsxfun:
result = bsxfun(@times,f,mat); % same functionality as f .* mat
  1 commentaire
Areesh Adil
Areesh Adil le 4 Fév 2020
Thank you so much
I came up with a convoluted way where I would multiply with scalars and then horizontally concatenate. But this is so much simpler. Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by