Gnuplot x-axis resolution

后端 未结 1 896
青春惊慌失措
青春惊慌失措 2020-12-05 13:10

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 t

相关标签:
1条回答
  • 2020-12-05 13:46

    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.

    0 讨论(0)
提交回复
热议问题