Why fimplicit3 draw the same function differently
古いコメントを表示
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 件のコメント
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.
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Number Theory についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




