This function produces two-dimensional plots. For more detailed inctructions, please refer to the documentation.
Example 1
In Octave:
x = (-10:0.2:10);
y = sin(x)';
z = cos(x)';
__gnuplot_raw__ ("set title 'Eplot'\n");
eplot(x, y, "-@(2|2|3|6|2);sin(x);", x, z, "-(3|3|5);cos(x);");
The output will be:

Example 2
In Octave:
x = (-10:0.1:10)';
y = sin(x);
z = cos(x);
w = sin(x-1);
__gnuplot_raw__ ("set title 'Eplot 2'\n");
eplot(x, y, "-@(2|2|3|6|2);sin(x);", x, z, "-(3|3|5);cos(x);", x, w, "-@(4|1|7|2|1);sin(x-1);");
The output will be:
