Useful Octave Functions

Emesh

Emesh

You need the following files to properly use the emesh function:

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:

©2007 Francis Poulin