Path: csiph.com!feeder.erje.net!2.eu.feeder.erje.net!fdn.fr!proxad.net!feeder1-2.proxad.net!cleanfeed2-a.proxad.net!nnrp1-1.free.fr!not-for-mail Newsgroups: comp.graphics.apps.gnuplot Date: Thu, 24 Nov 2016 09:16:58 +0100 From: Jean-Pierre Coulon Subject: Re: Can I display tics to show the value of my paramter. In-Reply-To: Message-ID: References: User-Agent: Alpine 2.20 (WNT 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Lines: 30 Organization: Guest of ProXad - France NNTP-Posting-Date: 24 Nov 2016 09:16:56 CET NNTP-Posting-Host: 192.54.176.195 X-Trace: 1479975416 news-4.free.fr 7993 192.54.176.195:57877 X-Complaints-To: abuse@proxad.net Xref: csiph.com comp.graphics.apps.gnuplot:3483 On Wed, 23 Nov 2016, Karl Ratzsch wrote: > Something like > > set samp 30 > > x(f) = f/10 * sin(f/5) > y(f) = f/10 * cos(f/5) > > plot sample [f=1:30] "+" \ > using (x(f)):(y(f)):(sprintf("%.f",f)) with labels point pt 1 Thanks, this works but I want a logarithmic set of labels. I am happy like this: set sample 30 set trange [1:30] x(f) = f/10 * sin(f/5) y(f) = f/10 * cos(f/5) set param set dummy f set label "10" at x(10), y(10) set label "20" at x(20), y(20) # etc. plot x(f), y(f) Bye, -- Jean-Pierre Coulon