MATLAB: How to convert ANS to MATRIX

MATLABmatrixmatrix arraymatrix manipulation

I got following:
x = [0:119] (enter) & then, y = x/120
Now I've all values of 'y'. for further calculation like (1-y)^2 matlab is asking to convert 'y' into matrix form and data in scalar form.
Error message is showing : "Error using ^ Inputs must be a scalar and a square matrix. To compute elementwise POWER, use POWER (.^) instead."
Can you help me out here to convert all data of 'y' in form of matrix? & whatever more you want to add…

Best Answer

"To compute elementwise POWER, use POWER (.^) instead"
result = ( 1 - y ).^2