我刚刚在Windows 7上安装了Julia-Studio 0.4.4。并添加了Winston软件包以尝试绘图。所以我做了如下所示并获得了“FramedPlot(...)”输出,没有图形。
using Winston
x=randn(1,1000);
plot(x)
FramedPlot(...)
我该怎么做才能让它发挥作用?还有其他库吗?
答案 0 :(得分:2)
我遇到了同样的问题。看起来在评论中已经回答了,但对于未来的读者,您需要致电display()
:
using Winston
display( plot( randn(1,1000) ) )