MATLAB: How to assign value to variable

MATLAB

My equation is Y+5 = 10, how can i assign value to Y because i keep getting this error.

Best Answer

You cannot assign value to variable like this. The correct syntax is
y = 10 - 5;
Only variable name can be on left side. I suggest taking this free course to understand the basics of MATLAB: https://www.mathworks.com/learn/tutorials/matlab-onramp.html
Related Question