This function produces three-dimensional plots. For more detailed inctructions, please refer to the documentation.
Example
In Octave:
x = (-10:0.2:10)';
y = x';
z = sin(x)*sin(y);
__gnuplot_raw__ ("set title 'Emesh'\n");
emesh (x, y, z, "-@(2|2|2|5|0.5);sin(x)*sin(y);");
The output will be:
