Graph plotting of f(x,y)=e^x+e^y using ezsurf

2 views (last 30 days)
clear
clc
syms x y
f=(e^x+e^y)
ezsurf(f)
colormap cool

Accepted Answer

KSSV
KSSV on 17 Apr 2022
clear
clc
syms x y
f=(exp(x)+exp(y))
f = 
ezsurf(f)
colormap cool

More Answers (0)

Community Treasure Hunt

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

Start Hunting!