plane y=x

4 views (last 30 days)
F.O
F.O on 4 Dec 2017
Answered: KSSV on 5 Dec 2017
Hei , I want to drow this planes y=x,z=x,z=y in 3D using fsurf but dont know fow to set the function?

Accepted Answer

KSSV
KSSV on 5 Dec 2017
% plane z=x,
figure
hold on
fsurf(@(x,y) x)
% plane z = y
fsurf(@(x,y) y)
view(3)

More Answers (0)

Categories

Find more on Graphics Object Programming in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!