element wise product matrix-vector
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
Torsten
2020년 4월 4일
0 개 추천
Y_t = bsxfun(@times,Y_t,w)
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!