How to say this in MATLAB language?

I want to say a plus b equals to 10
math exuation:
a+b=10
how write this in matlab?

 Accepted Answer

madhan ravi
madhan ravi on 7 Dec 2018
Edited: madhan ravi on 7 Dec 2018
Welcome to the club ;-) see syms requires symbolic math toolbox
syms a b
equation=a+b==10

4 Comments

thanks! and after that can I use the a and b values elsewhere in my code?
madhan ravi
madhan ravi on 7 Dec 2018
Edited: madhan ravi on 7 Dec 2018
Anytime :) , yes sure why not ? values can be assigned later on using subs() read the documentation pages to know more about the symbolic world .
But what values do you want ot use for a and b? 2 and 8? 1 and 9? 5.5 and 4.5?
Matlab will calculate the best values for my fitness function.
Yes, I should and will read the documentation.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!