How to solve system of equation in Matlab ?

5 Ansichten (letzte 30 Tage)
Nguyen Trong Nhan
Nguyen Trong Nhan am 3 Jan. 2014
Beantwortet: Matt J am 3 Jan. 2014
How to solve the system of equations that the number of variable is fewer than the number of equations. for example:
x + y + 2z = 0,
2x + y -z = 0.
the result is
x = 3t,
y=-5t,
z=t.(t is parameter)
thanks you very much.

Akzeptierte Antwort

Matt J
Matt J am 3 Jan. 2014
Or numerically,
null([1 1 2; 2 1 -1])

Weitere Antworten (1)

Azzi Abdelmalek
Azzi Abdelmalek am 3 Jan. 2014
sol=solve('x + y + 2*z = 0','2*x + y -z = 0','x','y')
x=sol.x
y=sol.y

Kategorien

Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by