Re: [Pdl-general] strange bug in gnuplot

2023-06-01 Thread Zakariyya Mughal
On 2023-06-01 at 13:10:39 -0600, Luis Mochan wrote: > I have a strange bug in PDL::Graphics::Gnuplot. Consider the following > program: > > use PDL; > use PDL::Graphics::Gnuplot; > use IO::Prompter; > $title="A title with many useless letters"; > gplot({title=>$title}, with=>"

[Pdl-general] strange bug in gnuplot

2023-06-01 Thread Luis Mochan
I have a strange bug in PDL::Graphics::Gnuplot. Consider the following program: use PDL; use PDL::Graphics::Gnuplot; use IO::Prompter; $title="A title with many useless letters"; gplot({title=>$title}, with=>"lines", zeroes(20)->xvals**2); prompt -void, -single, "Ready?";