How to assign value to variable

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

 Accepted 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

More Answers (1)

syms Y
equation = Y + 5 == 10

Categories

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!