不要进入gnuplot终端

时间:2013-05-28 23:19:17

标签: haskell gnuplot

使用gnuplot模块,在绘制图表后,我会进入gnuplot控制台。有没有办法阻止这种情况发生?我从不使用它,在关闭每个图形之后必须键入exit是很烦人的,特别是当我测试一系列图时。

例如:

module Main where
import Graphics.Gnuplot.Simple
main = do
    let xs = linearScale 100 (-10, 10) :: [Float]
    plotFunc [] xs sin
    plotFunc [] xs cos

如果有所不同,我使用的是Windows 7 x64和Haskell Platform 2013.2.0.0。

2 个答案:

答案 0 :(得分:1)

尝试以下方法:

bind Close "exit gnuplot"

它应该做的伎俩!

如果您不熟悉,请在此处查看绑定详细信息:bind reference

答案 1 :(得分:0)

我发现更改Haskell Gnuplot库以运行“pgnuplot”而不是“gnuplot”(并重新安装)它可以正常工作。