Closed mohawk2 closed 7 months ago
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)
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
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)