Graph the planes 2x − 3y + 4z = 2 and x − z = 1 on the same plot.

3 views (last 30 days)
I can get both planes using fimplicit3 but I don't know how to put them on the same plot

Answers (1)

madhan ravi
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
Screen Shot 2018-11-13 at 11.04.39 PM.png

Tags

Community Treasure Hunt

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

Start Hunting!