我有一个带有与上面类似的参数 z 的函数:
y = sin(x+z)
我如何绘制是作为X以及所有可能的值是在[0.1,+0.1]中?
我想用图形表示出这些限制所定义的区域。因此,以 sin(x-0.1) 和 sin(x+0.1) 为界的所有内容都将被阴影化,而外面的所有内容都将是空白。
我正在尝试用格努普特,但使用任何软件可能都可以。
答案1
答案2
看一下filledcurves
。
要绘制集合 {sin(x-0.1) < y < sin(x+0.1)},请使用:
unset key
set sample 1000
plot sin(x+0.1) w filledcurves y=-1 lw 0
replot sin(x-0.1) w filledcurves y=-1 lc rgbcolor "white" lw 0