**> how to plot a cone, a hyperbolic paraboloid and a circular paraboloid
? , with the following equation:
[enter image description here][1]
Use surface plots:
a = ?; b=?; c=?;
[X, Y] = meshgrid(linspace(0,1,25), linspace(0,1,25))
Z = ((x/a).^2 + (y/b).^2)*c
surf(X,Y,Z)
Replace linspace(0,1,25)
by the range you want.