element wise product matrix-vector
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
I have a 200x5 matrix (Y) that includes 5 time series and a 5x1 vector of weights (w). For each t (row of the matrix), I need to compute the following element-wise product:

How can I do that? 
Thank you
0 commentaires
Réponse acceptée
  David Hill
      
      
 le 4 Avr 2020
        S_t=Y_t.*w';
3 commentaires
  Florian Floh
      
 le 4 Avr 2020
				No, David's code does work. Matlab is smart enough to recognize, that the dimensions do not agree, so it performs it for each row. 
But in theory, you are right, Alex. The Hadamard product requires to have matrices who's dimensions do match ;)
Plus de réponses (1)
Voir également
Catégories
				En savoir plus sur Creating and Concatenating Matrices 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!



