MATLAB: Plot a elliptic cone

elliptic coneMATLAB

Hello there, I have this given equations of elliptic cone x^2 + 4*y^2 = z^2 and now I want to plot it.
I have try this but it seems to be incorrect.
f = @(x,y,z) x.^2 + 4*y.^2 - z.^2
fimplicit3(f,[-100,100])
How can I plot that function? Thanks in advance.

Best Answer

axis equal
Related Question