TABLE OF CONTENTS
plot::plot
SYNOPSIS
method plot {args} {
USAGE
Either: $obj plot PLOT_SPECS or $obj plot { PLOT_SPECS }
PURPOSE
Add the "plot" snippet to the Gnuplot script (i.e., plot $args, where $args are correctly parsed for Gnuplot).
EXAMPLE
$obj plot sin(2*x) w l lw 3 lt 1, cos(x) w l lw 5 lt 3 $obj plot { 1 + sin(x) + cos(x), exp(x) }
SOURCE
my options_initiate_ my add [concat plot [my parse_ $args]] }