On Sun, 31 Dec 2006 12:31:33 +0530
"Girish V" <[EMAIL PROTECTED]> wrote:

>Hi,
>
>I use dog to write 2-d piddles, both stdout or to a file.
>
>use PDL;
>my $pdl = random( 100, 100);
>wcols "%6.1f",$pdl->dog;
>
>Girish

Sorry, for this late reply, but I finally got around to testing dog.
It still dosn't work for large printouts.
Try:

#!/usr/bin/perl
use strict;
use warnings;
use PDL::LiteF;

#dog dosn't work on huge values

my $t1=  time;
my $pdl = sequence( 1000, 1000, 3 );
print $pdl->dog;
print "\n";
my $t2 = time;
print 'time ',$t2- $t1, "\n";
__END__

zentara

-- 
I'm not really a human, but I play one on earth.
http://zentara.net/japh.html

_______________________________________________
Perldl mailing list
[email protected]
http://mailman.jach.hawaii.edu/mailman/listinfo/perldl

Reply via email to