Pointtype command for gnuplot

前端 未结 1 1363
逝去的感伤
逝去的感伤 2021-02-05 06:06

I\'m having trouble using the pointtype command on gnuplot. I\'ve tried several ways such as:

set pt 5
set pointtype 5
plot \" \" w pt 5
plot \" \" w pointtype          


        
相关标签:
1条回答
  • 2021-02-05 06:30

    You first have to tell Gnuplot to use a style that uses points, e.g. with points or with linespoints. Try for example:

    plot sin(x) with points
    

    Output:

    Now try:

    plot sin(x) with points pointtype 5
    

    Output:

    You may also want to look at the output from the test command which shows you the capabilities of the current terminal. Here are the capabilities for my pngairo terminal:

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