Gnuplot极轴径向风格

时间:2014-06-04 17:05:48

标签: gnuplot

使用Gnuplot绘制极坐标时,如何移除或调整径向轴线的样式?

示例:

set polar
unset key
unset border
unset tics
plot '' u w filledcurve

产地:

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

1 个答案:

答案 0 :(得分:3)

您要查找的命令是unset raxis,例如:

set polar
unset key
unset border
unset tics
unset raxis
set size square
plot 1+cos(t) with filledcurve

我添加了set size square来使用平方比率。上面的脚本导致:

Plot of cardoid function