Effacer les filtres
Effacer les filtres

help I need matlab code that multiply each element in each coulmn by a each element in avector with the same length

1 vue (au cours des 30 derniers jours)
help I need matlab code that multiply each element in each coulmn by a each element in avector with the same length

Réponse acceptée

Star Strider
Star Strider le 13 Jan 2015
Modifié(e) : Star Strider le 13 Jan 2015
Use bsxfun:
m = rand(10,5);
v = rand(10,1);
vm = bsxfun(@times, v, m);
Here, ‘m’ is the matrix, ‘v’ is the vector, and ‘vm’ is the element-by-element product of the columns of ‘m’ and column vector ‘v’.
  4 commentaires

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by