Re: perl-PLPLOT

2014-01-18 Thread Michael Schwendt
> On Sat, 18 Jan 2014 11:10:50 +0100, Patrick Dupre wrote: > > > > Segmentation fault (core dumped) (it seems the constructor > > > PDL::Graphics::PLplot->new fails!) > > > Who is going to fix it? > > http://bugz.fedoraproject.org/plplot > http://sourceforge.net/p/plplot/bugs/ And I see perl-P

Re: perl-PLPLOT

2014-01-18 Thread Michael Schwendt
On Sat, 18 Jan 2014 11:10:50 +0100, Patrick Dupre wrote: > > Segmentation fault (core dumped) (it seems the constructor > > PDL::Graphics::PLplot->new fails!) > Who is going to fix it? http://bugz.fedoraproject.org/plplot http://sourceforge.net/p/plplot/bugs/ -- users mailing list users@lists.f

Re: perl-PLPLOT

2014-01-18 Thread Joachim Backes
On 01/18/2014 11:10 AM, Patrick Dupre wrote: > >> On 01/17/2014 11:19 PM, Patrick Dupre wrote: >>> use PDL; >>> use PDL::Graphics::PLplot; >>> >>> my $pl = PDL::Graphics::PLplot->new (DEV => "png", FILE => "test.png"); >>> my $x = sequence(10); >>> my $y = $x**2; >>> $pl->xyplot($x, $y); >>> $pl->

Re: perl-PLPLOT

2014-01-18 Thread Frank Murphy
On Sat, 18 Jan 2014 11:10:50 +0100 "Patrick Dupre" wrote: > I agree. > > Who is going to fix it? > > > Nobody, if they are not informed about it. ___ Regards, Frank www.frankly3d.com -- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https:/

Re: perl-PLPLOT

2014-01-18 Thread Patrick Dupre
> On 01/17/2014 11:19 PM, Patrick Dupre wrote: > > use PDL; > > use PDL::Graphics::PLplot; > > > > my $pl = PDL::Graphics::PLplot->new (DEV => "png", FILE => "test.png"); > > my $x = sequence(10); > > my $y = $x**2; > > $pl->xyplot($x, $y); > > $pl->close; > > Same here after installing perl-PDL

Re: perl-PLPLOT

2014-01-18 Thread Joachim Backes
On 01/17/2014 11:19 PM, Patrick Dupre wrote: > use PDL; > use PDL::Graphics::PLplot; > > my $pl = PDL::Graphics::PLplot->new (DEV => "png", FILE => "test.png"); > my $x = sequence(10); > my $y = $x**2; > $pl->xyplot($x, $y); > $pl->close; Same here after installing perl-PDL.x86_64 a

perl-PLPLOT

2014-01-17 Thread Patrick Dupre
Hello, I updated my machine to fc20 and now my praphics application fails: Even the example: use PDL;  use PDL::Graphics::PLplot;  my $pl = PDL::Graphics::PLplot->new (DEV => "png", FILE => "test.png");  my $x  = sequence(10);  my $y  = $x**2;  $pl->xyplot($x, $y);  $pl->close; fails: Se