changeset 6019:f717f9e37d8f

[project @ 2006-10-02 17:44:43 by jwe]
author jwe
date Mon, 02 Oct 2006 17:44:43 +0000
parents bda649f500bd
children f542445f6b7a
files scripts/plot/print.m
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/print.m	Mon Oct 02 17:23:19 2006 +0000
+++ b/scripts/plot/print.m	Mon Oct 02 17:44:43 2006 +0000
@@ -103,19 +103,20 @@
 ## @example
 ## @group
 ## __gnuplot_set__ terminal postscript
-## __gnuplot_set__ output "foo.ps"
+## __gnuplot_raw__ ("set output \"foo.ps\"\n");
 ## subplot (2, 1, 1);
 ## sombrero (21);
 ## subplot (2, 1, 2);
 ## sombrero (41);
-## oneplot
+## oneplot ();
 ## __gnuplot_set__ terminal x11
-## __gnuplot_set__ output
+## __gnuplot_raw__ ("set output\n");
 ## @end group
 ## @end example
 ##
 ## will save both figures on a single page in the PostScript file
-## @file{foo.ps}.
+## @file{foo.ps}.  All labeling commands should appear before the plot
+## command for each subplot.
 ## @end deftypefn
 
 ## Author: Daniel Heiserer <Daniel.heiserer@physik.tu-muenchen.de>