MATLAB: How to plot 3D surface x^3 + y^3 + z^3 = 1, where x, y, z are in unit closed interval in MATLAB ?.

surface

I want to plot a surface x^3 + y^3 + z^3 = 1, where x, y, z are in unit closed interval. The MATLAB is not displaying the plot. Perhaps there occur some complex roots. Please help me to write its code. Thanks in advance.

Best Answer

syms x y z
fimplicit3(x^3+y^3+z^3==1,[-1 1 -1 1 -1 1])
Related Question