Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gnuplot x-axis resolution

Tags:

gnuplot

I'm trying to plot in gnuplot a log-periodic function: cos((log(abs(t-Tc))*PI/log10(lambda) ) + phi)

But because of the nature of log(x) near to x=0, the plot is getting ugly.

How to plot a log-periodic function in gnuplot so it looks nice?

My plot script looks like this:

phi = 1
TcFormated = 9.67e+8
lambda = 2
PI = 3.1415

g(t) = abs(cos((log(abs(t-TcFormated))*PI/log10(lambda) ) + phi))

set tmargin at screen 0.01
set bmargin at screen 0.99
set lmargin at screen 0.01
set rmargin at screen 0.99

set xrange [8.4e+8:1.04e+9]
set yrange [0:1]
unset xtics
unset ytics
plot g(x) t '' w l

pause -1

log-periodic function

After setting:

set samples 10000

I got a much better looking graph: log-periodic function with set samples 10000

like image 482
czerasz Avatar asked Sep 17 '11 10:09

czerasz


1 Answers

If you want to increase the resolution try

set samples <X>

where <X> is an integer. Per default this integer is set to 100. Increase that number to your needs.

Though, the higher the integer is chosen the longer it will take gnuplot to plot the graph.

like image 167
Woltan Avatar answered Sep 28 '22 15:09

Woltan