来自How to get a radial(polar) plot using gnu plot?
我的数据:
theta dB
0 0.00
30 0.09
60 -0.26
90 -0.26
120 -0.35
150 -0.35
180 -0.35
210 -0.35
240 -0.26
270 -0.09
300 -0.26
330 0.00
360 0.00
Axis不会从0开始,但是从-2到0开始。如何修复此代码?
答案 0 :(得分:0)
极坐标模式的范围由set rrange
:
set polar
set grid polar
set angles degree
set size ratio 1
unset border
unset xtics
unset ytics
set rrange [-2:0]
plot 'file.txt' with lines
4.6.3的结果是: