Hello,
Let's say I have 2 rows with 5 data points each:
row 1: 1 2 3 4 5
row 2: -5 -4 -3 -2 -1
For row 1, weight is 0.5 and and for row 2, weight is 2. I'd like to be able to get to this:
weighted row 1: 0.5 1 1.5 2 2.5
weighted row 2: -10 -8 -6 -4 -2
How can I perform this operation quickly for hundreds of rows, each with a different weight?
Thank you.
Bookmarks