
Graph the planes 2x − 3y + 4z = 2 and x − z = 1 on the same plot.
3 views (last 30 days)
Show older comments
I can get both planes using fimplicit3 but I don't know how to put them on the same plot
0 Comments
Answers (1)
madhan ravi
on 13 Nov 2018
Edited: madhan ravi
on 13 Nov 2018
use
hold on %after first fimplicit3 and then use fimplicit3 for the next equation
That is
syms x y z
fimplicit3(...) %dots represent your equation
hold on
fimplicit3(...)
see the graph below, this is the graph you will get

0 Comments
See Also
Categories
Find more on Calculus 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!