|
From: SB <ste...@gm...> - 2006-10-17 09:28:30
|
Hello Doug, You can set a label, instead of setting the title. Setting the label, you have the possibility to include variables into your text (see "help label"). Unfortunately (at least in my version of Gnuplot - Ver. 4.0) this doesn't seem to work for setting the title. You need to have a placeholder, e.g. %g depending on the type of variable you use and the way you want it to be displayed. In your case that could be: set label 1 "Plot Number %g",n at graph 0.5, graph 0.5 If you need to find out what kind of placeholder you want to use, look in the internet for an documentation of "printf" in the C-libraries. In case you want to display more than one variable, this is also possible: set label 1 "Plot Number %g ",n, "at Parameter Value %g", parameter at graph 0.5, graph 0.5 Schöne Grüße, Stephan Am Montag, den 16.10.2006, 22:20 -0400 schrieb doug bull: > Hi, > > I have a large amount of data to view (about 300 plots) and I view them for > 1 second each using reread in the following load file - call it cmd1 > > n=n+1 > plot 'junkderivative' every :::n::n u 7:8 w l > pause 1 > if(n<301) reread > > In gnuplot I set n=0 and then load cmd1. All works very nicely. However, I > want to label each plot using the "value" of the variable n in cmd1. That is > I would like to do something like: > > plot 'junkderivative' every :::n::n u 7:8 title "$n plot" w l > > where $n use the value of n at the time the plot is called. > > Thank you, > > _________________________________________________________________ > Stay in touch with old friends and meet new ones with Windows Live Spaces > http://clk.atdmt.com/MSN/go/msnnkwsp0070000001msn/direct/01/?href=http://spaces.live.com/spacesapi.aspx?wx_action=create&wx_url=/friends.aspx&mkt=en-us > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Gnuplot-info mailing list > Gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > |