how to solve system of non linear equations with three different variables?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
x^2*y-z=1.5
x-3y^0.5+xz=-2
x+y-z=4.2
0 Kommentare
Antworten (1)
Hannes Daepp
am 14 Feb. 2017
You can use "solve" to find solutions for systems of equations. For example,
>> syms x y
>> [x_ans, y_ans] = solve(x + y == 9, y-x == 1)
x_ans =
4
y_ans =
5
The documentation offers more detail on the function, as well as several useful links for approaching equations solving, e.g.:
0 Kommentare
Siehe auch
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!