Questions tagged [pdl]

PDL ("Perl Data Language") gives standard Perl the ability to compactly store and speedily manipulate the large N-dimensional data arrays which are the bread and butter of scientific computing.

PDL turns Perl in to a free, array-oriented, numerical language similar to (but, we believe, better than) such commerical packages as IDL and MatLab. One can write simple perl expressions to manipulate entire numerical arrays all at once. Simple interactive shells, pdl2 and perldl, are provided for use from the command line along with the PDL module for use in Perl scripts.

61 questions
-2
votes
1 answer

About gsl_cdf_tdist_P from PDL::GSL::CDF (Perl)

Could you please let me know how to get the full p-value from gsl_cdf_tdist_P function when p-value is smaller than 1E-16? I am getting 0 instead. Thanks, Woody print "t-test p-value = " . ttest(\@n,\@t) . "\n"; sub ttest{ my ($n,$t) = @_; …
Woody Lin
  • 11
  • 2
1 2 3 4
5