Nice code! Well done!
You should try to combine it with the implicitplot3d(.)[go this website http://www-users.math.umd.edu/~jmr/241/surfaces.html].
It realy gives an excelent visual result as an alternative to the cranky mesh from isosurface(.) :S.
%% ____________________________________
figure,
syms x y z;
h=x^2+y^2+z^2;
implicitplot3d(h, 1, -3, 3, -3, 3, -3, 3, 40); axis equal
hold on
ezimplot3(h-1,[-5 5])
This seems like a good function. However, I could not discover it since my time has been fruitlessly spent. This function requires the symbolic toolbox, yet no mention of this was explicitly included on this page or in the function help.
Comment only