In MATLAB, I have an equation a*x+b=0 for which I have a and b defined during execution. What is the best way I can solve the equation using what I’ve set for a and b.
In MATLAB, I have an equation a*x+b=0 for which I have a and b
Share
I guess that you are going to have to use num2str() and related functions to build the equation in the string form that solve() requires. That shouldn’t be too difficult should it?