is there any solution to the following error?the memory is 8GB and WIN10.
there are 2 problems here: if I dont increase the mesh density the plotted function would not be visible in matlab, and when i increase the meshdensity the error pops up
>> f = @(x,y,z) (z-x).^2+(x-y).^2+(y-z).^2-1210000000;
>> interval=[0 60000];
>> fimplicit3(f,interval,'MeshDensity',900);
Warning: Error updating ImplicitFunctionSurface.
Out of memory. Type HELP MEMORY for your options.

 채택된 답변

darova
darova 2020년 4월 9일

0 개 추천

What about this approach?
cla
[x,y,z] = meshgrid(linspace(0,6e5,30));
F = (z-x).^2+(x-y).^2+(y-z).^2-1210000000;
isosurface(x,y,z,F,0)
light
axis vis3d

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by