|
From: Markus E. <ei...@in...> - 2008-01-29 10:56:37
|
When I generate several plots and print them to GIF or PNG the plots have the same style but different colors. This is useless for colorless papers, so the plots should have different styles instead (dots, x,o). Can I somehoe switch from color to BW mode? An sample line from my code is: set term gif size 640,400 set output 'M1_cur_ctrl.gif' plot filename using ($1):(2*pi/5-((int($2)%147)/147.2*2*pi/5)-pi/5) axes x1y1 title 'TARGET_M1' with lines,\ '' u 1:((abs(int($4)%147)/147.2*pi/5)) axes x1y1 title 'ERROR_M1' with lines,\ '' u 1:14 axes x1y2 title 'CURRENT_M1' with lines Thanks for your support. I am a real gnuplot noob ;-) /markus -- Dipl. Inform. Markus Eich Research Assistant Robotics Lab at DFKI Bremen German Research Center for Artificial Intelligence Email: mar...@df... Tel.: +49 (421) 218-64105 Fax : +49 (421) 218-64150 Room: 212 Postal address: DFKI Bremen Robotics Lab Markus Eich Robert-Hooke-Strasse 5 28359 Bremen Germany Further informations: http://www.dfki.de/robotics |
|
From: Peter D. <pc...@wi...> - 2008-01-29 11:02:33
|
Quoth Markus Eich on Prickle-Prickle, Chaos 29, 3174:
> Can I somehoe switch from color to BW mode?
The postscript terminal has such a mode; perhaps you can convert
thence to gif/png?
Try:
set terminal postscript enhanced monochrome dashed
|
|
From: Markus E. <ei...@in...> - 2008-01-29 11:28:13
|
Peter Danenberg schrieb: > Quoth Markus Eich on Prickle-Prickle, Chaos 29, 3174: > >> Can I somehoe switch from color to BW mode? >> > > The postscript terminal has such a mode; perhaps you can convert > thence to gif/png? > > Try: > > set terminal postscript enhanced monochrome dashed > Thank you that works just fine. Now I just have to convert the ps to gif or png. I think there is no way to do B&W on any graphical output terminal? > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > gnuplot-beta mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-beta > -- Dipl. Inform. Markus Eich Research Assistant Robotics Lab at DFKI Bremen German Research Center for Artificial Intelligence Email: mar...@df... Tel.: +49 (421) 218-64105 Fax : +49 (421) 218-64150 Room: 212 Postal address: DFKI Bremen Robotics Lab Markus Eich Robert-Hooke-Strasse 5 28359 Bremen Germany Further informations: http://www.dfki.de/robotics |
|
From: <pl...@pi...> - 2008-01-29 13:16:26
|
On Tue, 29 Jan 2008 12:27:18 +0100, Markus Eich = <ei...@in...> wrote: > Peter Danenberg schrieb: >> Quoth Markus Eich on Prickle-Prickle, Chaos 29, 3174: >> >>> Can I somehoe switch from color to BW mode? >>> >> >> The postscript terminal has such a mode; perhaps you can convert >> thence to gif/png? >> >> Try: >> >> set terminal postscript enhanced monochrome dashed >> > Thank you that works just fine. Now I just have to convert the ps to g= if > or png. > > I think there is no way to do B&W on any graphical output terminal? > > Hi, you can explicitly set both the colour and the line style for each plot = = line (see help for details). Unnecessarily creating a ps file seems an aweful waste of effort and = probably loses quailty. Maybe an option which would force BW output would have some merit since = = monotone printers do exist and so do colour printers with (near) empty = colours . Printing in black only would be an advantage. Perhaps "monochrome=3Dblack" or "monochrome=3Dblue" would be a nice way = of = producing monochrome output , whether for esthetic reasons or to work = around ink shortages. This should be no more complicated than changing t= he = default output colour from black to something else. Could be useful. /Peter. >> ---------------------------------------------------------------------= ---- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> gnuplot-beta mailing list >> gnu...@li... >> https://lists.sourceforge.net/lists/listinfo/gnuplot-beta >> > > |
|
From: Allin C. <cot...@wf...> - 2008-01-30 00:50:19
|
On Tue, 29 Jan 2008, Markus Eich wrote: > I think there is no way to do B&W on any graphical output terminal? With the current pngcairo driver you can do set term pngcairo mono dashed > This is useless for colorless papers... Why would you want to use a bitmap format such as PNG or, worse, GIF in a paper? These are only any good for viewing on-screen. Allin Cottrell |