Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
clear
clc;
syms x y;
z=inline('sqrt(x^2+y^2- 1)');
ezsurf(z,[0,1,0,1]);
figure(2)
z=inline('x+y- 1');
ezsurf(z,[0,1,0,1]);
figure(3)
z=inline('(x^3+y^3- 1)^(1/3)');
ezsurf(z,[0,1,0,1]);