Why fimplicit3 draw the same function differently
Show older comments
f=@(x,y,z) (x+y+z).^2
fimplicit3(f)
We actually know that this equals to draw the graph of
,but the code turns out to be this:

What happened to the function?
1 Comment
Seems like a bug -
f=@(x,y,z) (x+y+z).^2;
fun=fimplicit3(f)
No output if Mesh Density is changed, and the axes limits go from the default [-5 5] to [0 1];
figure
fimplicit3(f,'MeshDensity',50)
Specifying interval gives the same result as above
figure
fimplicit3(f,[-5 5],'MeshDensity',50)
I tested the same in my R2021a and it has the same behaviour as above.
Accepted Answer
More Answers (0)
Categories
Find more on Number Theory in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



