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

I can get both planes using fimplicit3 but I don't know how to put them on the same plot

Answers (1)

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

Categories

Tags

Asked:

on 13 Nov 2018

Edited:

on 13 Nov 2018

Community Treasure Hunt

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

Start Hunting!