gnuplot-Filledcurve问题

gnuplot-Filledcurve问题,gnuplot,Gnuplot,我有以下gnuplot脚本: #!/bin/bash gnuplot << EOF set term postscript portrait color enhanced set output 'temp.ps' set border lw 0.2 unset key set size 1,1 set origin 0,0 set size ratio 1 set size 0.47,0.47 set mxtics 2; set mytics 4 f(x,z)=z+5-5*l

我有以下
gnuplot
脚本:

#!/bin/bash
gnuplot << EOF

set term postscript portrait color enhanced 
set output 'temp.ps'
set border lw 0.2
unset key

set size 1,1
set origin 0,0
set size ratio 1
set size 0.47,0.47
set mxtics 2; set mytics 4

f(x,z)=z+5-5*log10(x)
set style fill transparent solid 0.1

set yrange [12:-2]; set xrange[0:10000]
plot f(x,17.55) w filledcurve lc rgb "black", \
f(x,17.5) w lines lt 2 lc rgb "green"

EOF
#/bin/bash
gnuplot到地址1):

地址2):


作为旁注,
transparent
命令中的
设置样式填充
在postscript终端中不起任何作用,因为它不支持纯色透明。

完美!我从你回答的另一个问题中得到了2的答案:)你可以把这一行添加到你当前的答案中,我会把这个问题标记为完全回答。再次感谢米吉尔森!我写评论的时候你就这么做了。你跑得真快@加布里埃尔——我知道我以前做过(我不记得在哪里),但第二次追踪并不难:)。
set style fill transparent solid 0.1 noborder
set grid noxtics nomxtics noytics nomytics front