Haskell plotting library similar to MATLAB

后端 未结 5 1270
天涯浪人
天涯浪人 2021-02-02 09:00

Is there a Haskell library for drawing plots similar to MATLAB, scilab or matplotlib? They all have very simple interfaces, which work like a state machine:

plot         


        
5条回答
  •  北海茫月
    2021-02-02 09:28

    What about gnuplot?

    For example, plotList from Graphics.Gnuplot.Simple:

    plotList [] [(1, 1), (2, 2), (3, 3)]
    

提交回复
热议问题