# HG changeset patch # User jwe # Date 1159811083 0 # Node ID f717f9e37d8f5ef1dc8cb2ce99e887e86aef2ec6 # Parent bda649f500bd5517da50fecf1d62701b6a12e431 [project @ 2006-10-02 17:44:43 by jwe] diff -r bda649f500bd -r f717f9e37d8f scripts/plot/print.m --- 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