This is an example of how to create a mesh plot from a function in MATLAB®.
Read about the ezmesh function in the MATLAB® documentation.
Go to MATLAB Plot Gallery
% Create the mesh plot using the function f(x,y) = y^2 - x^2 figure; ezmesh('y^2 - x^2', [-3 3], [-3 3]);
