vpasolve accuracy in two equations with two variables
4 views (last 30 days)
Show older comments
sason yaakov bochnick
on 22 Sep 2022
Commented: Star Strider
on 28 Sep 2022
I got two massive equations with two variables, and vpasolve can not find the solution because that commend search for an accurate answer, which does not exist. I want to get the nearest value of the variables that solve the equations. For example, I am satisfied with 90% accurate solutions.
can I add an accurate aspect in the commend vpasolve?
if not, what command or simple method can I use?
2 Comments
Torsten
on 22 Sep 2022
The enhanced accuracy in contrast to other methods is never the reason why vpasolve fails to find a solution.
To get a useful answer from the forum, we have to see your equations.
Accepted Answer
Star Strider
on 22 Sep 2022
I am not certain what problem you are having.
One option is to solve the equations and then use vpa on the solutions.
Example —
syms x
Eqn = x^5 + 2*x^4 + 10*x^3 - 3*x^2 - 110*x + 1
xs = solve(Eqn,x)
xsn = vpa(xs)
.
8 Comments
Star Strider
on 28 Sep 2022
My pleasure!
If my Answer helped you solve your problem, please Accept it!
.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!