我在Haskell
并使用Chart
模块。
在活动GTK
窗口中没有用于呈现的文档。所以我尝试了自己的:
import Graphics.Rendering.Chart.Easy
import Graphics.Rendering.Chart.Gtk
signal :: [Double] -> [(Double,Double)]
signal xs = [ (x,(sin (x*3.14159/45) + 1) / 2 * (sin (x*3.14159/5))) | x <- xs ]
main = renderableToWindow def 300 300 $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0,(0.5)..400]])
plot (points "am points" (signal [0,7..400]))
但这不正确,导致ghc -o main main.hs
返回:
[1 of 1] Compiling Main ( main.hs, main.o )
main.hs:7:8:
Couldn't match expected type ‘Control.Monad.Trans.State.Lazy.StateT
(Layout Double Double)
(Control.Monad.Trans.State.Lazy.State CState)
()
-> t’
with actual type ‘IO ()’
Relevant bindings include main :: t (bound at main.hs:7:1)
The first argument of ($) takes one argument,
but its type ‘IO ()’ has none
In the expression:
renderableToWindow def 300 300
$ do { layout_title .= "Amplitude Modulation";
setColors [opaque blue, opaque red];
plot (line "am" [signal [0, (0.5) .. 400]]);
plot (points "am points" (signal [0, 7 .. 400])) }
In an equation for ‘main’:
main
= renderableToWindow def 300 300
$ do { layout_title .= "Amplitude Modulation";
setColors [opaque blue, ....];
plot (line "am" [signal ...]);
.... }
现在我的问题是:如何制作正确的GTK渲染?
答案 0 :(得分:2)
renderableToWindow
有类型...
renderableToWindow :: Renderable a -> Int -> Int -> IO ()
...所以它不会将您尝试传递的EC
计算作为最后一个参数。我认为最简单的解决方案是使用toWindow
,它将使用默认状态运行EC
计算,将其结果转换为Renderable
并将其传递给renderableToWindow
:
toWindow :: (Default r, ToRenderable r) => Int -> Int -> EC r () -> IO ()
main = toWindow 300 300 $ do
layout_title .= "Amplitude Modulation"
setColors [opaque blue, opaque red]
plot (line "am" [signal [0,(0.5)..400]])
plot (points "am points" (signal [0,7..400]))