|
From: Ethan A M. <merritt@u.washington.edu> - 2005-06-23 16:35:02
|
On Monday 20 June 2005 05:52 pm, Johannes Nendwich wrote: > > 1) is it possible to define similar to defining strings (filnam = > "file1.dat"), similar to defining numerical variables (n = 3) ? Yes, but only in version 4.1 > 2) is it possible to use different columns from different files in one > plot: plot "file1.dat" u 3 : "file2.dat" u 2 No. However, depending on the file formats it may be possible to merge the files into one stream as you go: NCOLS = 3 plot "join file1.dat file2.dat" using 3:(NCOLS+2) > 3) is it possible to create multi-page postscript output? Of course. Every plot gets a new page. Surely you tried this? -- Ethan A Merritt Biomolecular Structure Center University of Washington, Seattle 98195-7742 |