in reply to PDL newbie question
#!/usr/bin/perl use PDL; my $s = sequence 10; my @s = list $s; # or @s = $s->list; print "@s"; __END__
A very useful thing to do (well, I think so anyway) is to type "perldl" at your command prompt and from the PDL shell, query the PDL docs with ? and ??
|
|---|