Plotting planes from set of linear equations
Afficher commentaires plus anciens
Hi,
How can I plot the 3 planes of a set of linear equations:
By plotting it easier to determine if there is one, infinte or zero solutions
example
x - 2y - 3z=0
2y + z = -8
-x + y + 2z = 3
To find the solution I define the matrix and use reduced row echolon form function:
A =
1 -2 -3 0
0 2 1 -8
-1 1 2 3
>> rref(A)
ans =
1 0 0 -4
0 1 0 -5
0 0 1 2
1 commentaire
Marius Sæther
le 23 Août 2021
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
