How to solve system of equation in Matlab ?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nguyen Trong Nhan
le 3 Jan 2014
Réponse apportée : Matt J
le 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.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Azzi Abdelmalek
le 3 Jan 2014
sol=solve('x + y + 2*z = 0','2*x + y -z = 0','x','y')
x=sol.x
y=sol.y
0 commentaires
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!