MATLAB: How do i plot x^2 +4y^2 +9z^2 = 1

3d plots

how do i plot x^2 +4y^2 +9z^2 = 1

Best Answer

fimplicit3(@(x,y,z) x.^2 +4*y.^2 +9*z.^2 - 1)