Man Scilab

milk_drop
Scilab Function

milk_drop - milk drop 3D function

Calling Sequence

z=milk_drop(x,y)

Parameters

Description

milk_drop is a function representing the surface of a milk drop falling down into milk. It can be used to test functions eval3d and plot3d .

Examples


x=-2:0.1:2; y=x;
z=eval3d(milk_drop,x,y);
plot3d(x,y,z)
 
  

See Also

eval3d ,   plot3d ,  

Author

Steer S.

Back