Question

I just installed Julia-Studio 0.4.4 on windows 7. And added the package Winston to try out plotting. So I did as below and got "FramedPlot(...)" output, no graphical figure.

using Winston
x=randn(1,1000);
plot(x)
FramedPlot(...)

What should I do to make it work? Any additional library?

Was it helpful?

Solution

I ran into this same problem. Looks like it was answered in the comments, but for future readers, you need to call display():

using Winston
display( plot( randn(1,1000) ) )
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top