MATLAB
Make sure to have the proper commands for clearing the Command Window as well as the variables memory in the beginning of your codes. Also, write the proper ‘display header’ for each part. Give a short explanation in front of each line as needed
Define: x=0.1, y is two times the absolute value of x, and z is the fix value of y.
(a)- Create a row vector and assign it to variable row_vec that has the following elements: z+y , y*x^z , log(y/x) , (xy) , and (x+y).
(b)- Create a column vector of row_vec and assign it to variable col_vec1.
(c)- Create a column vector of row_vec with another approach and assign it to variable col_vec2.