We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://stackoverflow.com/questions/35782290/point-limitation-for-pdl-gnuplot-and-qt-terminal-using-replot shows:
use strict; use warnings; use PDL; use PDL::Graphics::Gnuplot qw/gpwin/; my $win = gpwin('qt', persist => 1); foreach my $a (1..15) { my $x = sequence(101)/100; my $y = $a*$x; if ($a == 1) { $win->plot({ linecolor => 'black' }, $x, $y); } else { $win->replot({ linecolor => 'black' }, $x, $y); } }
only showing 11 lines. (see SO question for more)
The text was updated successfully, but these errors were encountered:
With Gnuplot 5.4.2 here and qt, it showed 15 lines. It looks like this is solved, and it looks like it was indeed a Gnuplot problem.
qt
Sorry, something went wrong.
No branches or pull requests
https://stackoverflow.com/questions/35782290/point-limitation-for-pdl-gnuplot-and-qt-terminal-using-replot shows:
only showing 11 lines. (see SO question for more)
The text was updated successfully, but these errors were encountered: