Plotting planes from set of linear equations
Show older comments
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 Comment
Marius Sæther
on 23 Aug 2021
Accepted Answer
More Answers (0)
Categories
Find more on Mathematics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!