Gnuplot极径向轴样式

Gnuplot极径向轴样式,gnuplot,Gnuplot,使用Gnuplot在极坐标系中打印时,如何删除或调整径向轴线的样式 例如: set polar unset key unset border unset tics plot '' u w filledcurve 产生: 我想删除/调整水平黑线。您要查找的命令是取消设置坐标,例如: set polar unset key unset border unset tics unset raxis set size square plot 1+cos(t) with filledcurve 我添加

使用Gnuplot在极坐标系中打印时,如何删除或调整径向轴线的样式

例如:

set polar
unset key
unset border
unset tics
plot '' u w filledcurve
产生:


我想删除/调整水平黑线。

您要查找的命令是
取消设置坐标
,例如:

set polar
unset key
unset border
unset tics
unset raxis
set size square
plot 1+cos(t) with filledcurve
我添加了
set size square
以使用平方比。上述脚本将导致: