SOLVE command with SYMS
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi,
I have the Symbolic Math Toolbox. However, I can't even perform the following operation, which is copied and pasted from the Mathworks website on the usage of Symbolic Math Toolbx.
syms x
solve(x^2 + 4*x + 1 == 0)
The error says the following:
??? Input argument "x0" is undefined.
Error in ==> solve at 56
x=x0;
This isn't really what I'm trying to do. I have a system of non-linear equations and I get a whole different error messages, but the fact that I can't even perform a simple solving operation such as the above makes me think that there's something fundamentally wrong.
Can you please help me?
Thanks,
Eric
3 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 6 Sep. 2012
Bearbeitet: Azzi Abdelmalek
am 6 Sep. 2012
syms x
solve(x^2 + 4*x + 1)
3 Kommentare
Azzi Abdelmalek
am 6 Sep. 2012
to solve x^2 + 4*x + 1=5*x+1
solve(x^2 + 4*x + 1-(5*x+1))
Azzi Abdelmalek
am 6 Sep. 2012
Bearbeitet: Azzi Abdelmalek
am 6 Sep. 2012
or you don't need to use syms variables
solve('x^2 + 4*x + 1=0')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!