mbaz

Results 84 comments of mbaz

As far as I know, it's only available as bitmap. On Tue, Jun 16, 2015 at 9:48 AM, Chris Simpkins [email protected] wrote: > Do you happen to know whether this...

What OS? What is the latest version of gnuplot that works for you? I test on Linux, and 5.4.3 works for me.

Please try setting the terminal to `windows`: ``` set(term="windows") plot(1:10) ``` Gnuplot 5.4 introduced some changes in the way they handle stdin/stdout that causes it to sometimes fail when using...

This is fixed by passing `'x'`, etc as characters and not strings. Symbols are also accepted.

Works for me. What happens if you execute the code in the REPL instead of `include`ing it?

As you found out, the reason for this behavior is that Gaston creates only one gnuplot process, which handles all plots. The advantage is that only one process is created;...

This wouldn't be a trivial change, but let me think about it and see what I can come up with.

I understand the scenario you describe. That is why I'm considering addressing it, even though it's a non-trivial amount of work. I hope you also understand that that scenario is...

@sergstesh Just a quick note: this is implemented and functional in my local branch, which will become 2.0 sometime in the near future.

Thanks for the report. Gaston interacts with gnuplot uisng the stdin/stdout/stderr streams. The problem is likely that these are broken in Windows for Julia 1.6.0. I will try to reproduce...