I'm trying to write some code in matlab that will manipulate each element in a vector and will also return a vector. So basically if I have a vector x = [1 2 3 4 5]'; I would like to perform 2 * x(i) * i, where i is the ith element in the vector. And return y = [2 8 18 32 50]';I'm trying to write some code in matlab that wi