我正在使用gnuplot,我想知道是否可以在给定点(x,y)周围绘制一个半径为R的圆?
答案 0 :(得分:12)
如果您不想绘制圆形图,可以使用set object circle
命令。你可以像这样使用它,例如:
set object X circle at axis 0,0 size scr 0.1 fc rgb "navy"
这将在原点处绘制一个海军蓝色圆圈,半径为屏幕(画布)大小的0.1。请注意,当您指定圆的位置/半径时,您必须指定所使用的坐标系:first
对应于第一个xy坐标系,scr
(screen
的缩写)用于屏幕坐标。您可以通过查看绘图圈子的文档来了解更多信息。
答案 1 :(得分:0)
正在运行的gnuplot脚本:
# tell gnuplot where we want to look at
set xrange [0:1]
set yrange [0:1]
# make a square plot
set size square
# create a black circle at center (0.5, 0.5) with radius 0.5
set object 1 circle front at 0.5,0.5 size 0.5 fillcolor rgb "black" lw 1
f(x) = x # we need to plot at lest one function
plot f(x) # show the stuff
答案 2 :(得分:0)