element wise product matrix-vector

6 次查看(过去 30 天)
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

采纳的回答

David Hill
David Hill 2020-4-4
  3 个评论
Florian Floh
Florian Floh 2020-4-4
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 ;)

请先登录,再进行评论。

更多回答(1 个)

Torsten
Torsten 2020-4-4
Y_t = bsxfun(@times,Y_t,w)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by