Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.080.744 Times

Math Statistics software
Filter: All | Freeware | Demo
 

Math Statistics

< 1 2 3 4 5 > 
Added: June 09, 2010 | Visits: 1.086

Statistics::RankOrder Statistics::RankOrder contains algorithms for determining overall rankings from a panel of judges. SYNOPSIS use Statistics::RankOrder; my $r = Statistics::RankOrder->new(); $r->add_judge( [qw( A B C )] ); $r->add_judge( [qw( A C B )] ); $r->add_judge( [qw( B A C )] ); my %ranks =...



Platforms: *nix

License: Freeware Size: 13.31 KB Download (95): Statistics::RankOrder Download

Added: November 23, 2010 | Visits: 1.492

Statistics::Descriptive Statistics::Descriptive is a Perl module of basic descriptive statistical functions. SYNOPSIS use Statistics::Descriptive; $stat = Statistics::Descriptive::Full->new(); $stat->add_data(1,2,3,4); $mean = $stat->mean(); $var = $stat->variance(); $tm = $stat->trimmed_mean(.25);...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (119): Statistics::Descriptive Download

Added: November 06, 2010 | Visits: 871

Math::FresnelZone SYNOPSIS use Math::FresnelZone; use Math::FresnelZone qw(fresnel fresnelMi fresnelKm); The arguments are: 0 - distance in kilometers or miles (default is 1), 1 - frequency in GHz (defualt 2.4), 2 - set to true to specify that the distance you are inputting is in miles and that the...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): Math::FresnelZone Download

Added: June 01, 2010 | Visits: 1.110

Statistics::ChiSquare Statistics::ChiSquare - How well-distributed is your data? SYNOPSIS use Statistics::Chisquare; print chisquare(@array_of_numbers); Statistics::ChiSquare is available at a CPAN site near you. Suppose you flip a coin 100 times, and it turns up heads 70 times. Is the coin fair? Suppose...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (101): Statistics::ChiSquare Download

Added: July 05, 2010 | Visits: 940

Math::HashSum Math::HashSum can sum a list of key-value pairs on a per-key basis. SYNOPSIS use Math::HashSum qw(hashsum); my %hash1 = (a=>.1, b=>.4); my %hash2 = (a=>.2, b=>.5); my %sum = hashsum(%hash1,%hash2); print "$sum{a}n"; # Prints .3 print "$sum{b}n"; # Prints .9 This module allows you to...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (89): Math::HashSum Download

Added: September 13, 2010 | Visits: 1.197

Math::Numbers Math::Numbers is a Perl module that contains methods for mathematical approaches of concepts of the number theory. SYNOPSIS use Math::Numbers; my $a = 123; my $b = 34; my $numbers = Math::Numbers->new($a, $b [, ...]); print "They are coprimes (relatively primes)!n" if...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (98): Math::Numbers Download

Added: July 08, 2010 | Visits: 1.490

Math::CDF Math::CDF is a Perl module to generate probabilities and quantiles from several statistical probability functions. SYNOPSIS use Math::CDF; $prob = &Math::CDF::pnorm(1.96); if( not defined($z = &Math::CDF::qnorm(0.975)) ) { die "qnorm() failed"; } or use Math::CDF qw(:all); $prob =...


Platforms: *nix

License: Freeware Size: 65.54 KB Download (129): Math::CDF Download

Added: February 09, 2010 | Visits: 1.083

Math::Vec Math::Vec is a Object-Oriented Vector Math Methods in Perl. SYNOPSIS use Math::Vec; $v = Math::Vec->new(0,1,2); or use Math::Vec qw(NewVec); $v = NewVec(0,1,2); @res = $v->Cross([1,2.5,0]); $p = NewVec(@res); $q = $p->Dot([0,1,0]); or use Math::Vec qw(:terse); $v = V(0,1,2); $q...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (110): Math::Vec Download

Added: April 02, 2010 | Visits: 1.265

Statistics::SPC Statistics::SPC is a Perl module with calculations for Stastical Process Control (SPC). Creates thresholds based on the variability of all data, # of samples not meeting spec, and variablity within sample sets, all from training data. Note: this is only accurate for data which is normally...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (136): Statistics::SPC Download

Added: February 26, 2010 | Visits: 1.169

Math::Telephony::ErlangC Math::Telephony::ErlangC is a Perl extension for Erlang C calculations. SYNOPSIS use Math::Telephony::ErlangC; # Evaluate probability that a service request will have to wait $wprob = wait_probability($traffic, $servers); # Probability that the wait time will be less than a fixed maximum...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (138): Math::Telephony::ErlangC Download

Added: March 09, 2010 | Visits: 1.210

Math::Telephony::ErlangB Math::Telephony::ErlangB is a Perl extension for Erlang B calculations. SYNOPSIS use Math::Telephony::ErlangB qw( :all ); # Evaluate blocking probability $bprob = blocking_probability($traffic, $servers); $gos = gos($traffic, $servers); # Same result as above # Dimension minimum number...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (259): Math::Telephony::ErlangB Download

Added: August 01, 2010 | Visits: 1.372

Statistics::Smoothing::SGT Statistics::Smoothing::SGT is a Simple Good-Turing (SGT) smoothing implementation. SYNOPSIS Basic Usage use Statistics::Smoothing::SGT my $sgt = new Statistics::Smoothing::SGT($frequencyClasses, $total); $sgt->calculateValues(); $probabilities = $sgt->getProbabilities(); $newFrequencies...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (107): Statistics::Smoothing::SGT Download

Added: March 18, 2010 | Visits: 816

Math::Expr Math::Expr is a Perl module that parses mathematical expressions. SYNOPSIS require Math::Expr; $p=new Math::Expr; $e=$p->Parse("a+4*b-d/log(s)+f(d,e)"); Parses mathematical expressions into a tree structure. The expressions may contain integers, real numbers, alphanumeric variable names,...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): Math::Expr Download

Added: June 16, 2010 | Visits: 1.433

Free Statistics Free Statistics records and views daily Web site page views (hits) for statistical tracking. This is a Free PHP script to record and view daily website page views (hits) for statistical tracking. Features a chart of daily page views totals displayed with bar graph, total for last x days, most...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (107): Free Statistics Download

Added: April 07, 2010 | Visits: 1.123

Statistics::Contingency Statistics::Contingency is a Perl module to calculate precision, recall, F1, accuracy, etc. SYNOPSIS use Statistics::Contingency; my $s = new Statistics::Contingency(categories => @all_categories); while (...something...) { ... $s->add_result($assigned_categories, $correct_categories);...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (89): Statistics::Contingency Download

Added: April 24, 2010 | Visits: 769

Math::BaseCalc Math::BaseCalc is a Perl module that can convert numbers between various bases. SYNOPSIS use Math::BaseCalc; my $calc = new Math::BaseCalc(digits => [0,1]); #Binary my $bin_string = $calc->to_base(465); # Convert 465 to binary $calc->digits(oct); # Octal my $number =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Math::BaseCalc Download

Added: November 20, 2010 | Visits: 1.062

Math::BaseArith Math::BaseArith is a Perl extension for mixed-base number representation (like APL encode/decode). SYNOPSIS use Math::BaseArith; encode( value, base_list ); decode( representation_list, base_list ); The inspiration for this module is a pair of functions in the APL programming language...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (96): Math::BaseArith Download

Added: July 20, 2010 | Visits: 1.225

Statistics::ROC Statistics::ROC is a Perl module with receiver-operator-characteristic (ROC) curves with nonparametric confidence bounds. SYNOPSIS use Statistics::ROC; my ($y) = loggamma($x); my ($y) = betain($x, $p, $q, $beta); my ($y) = Betain($x, $p, $q); my ($y) = xinbta($p, $q, $beta, $alpha); my...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (95): Statistics::ROC Download

Added: November 07, 2010 | Visits: 948

Statistics::Candidates Candidates is a Perl5 module for manipulating candidate features (help module for Statistics::MaxEntropy). SYNOPSIS use Statistics::Candidates; # create a new candidates object and read candidate features $candidates = Statistics::Candidates->new($some_file); # checks for constant...


Platforms: *nix

License: Freeware Size: 41.98 KB Download (93): Statistics::Candidates Download

Added: February 09, 2010 | Visits: 1.055

Statistics::Cluto Statistics::Cluto package contains Perl binding for CLUTO. SYNOPSIS use Statistics::Cluto; use Data::Dumper; my $c = new Statistics::Cluto; $c->set_dense_matrix(4, 5, [ [8, 8, 0, 3, 2], [2, 9, 9, 1, 4], [7, 6, 1, 2, 3], [1, 7, 8, 2, 1] ]); $c->set_options({ rowlabels => [ row0,...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (93): Statistics::Cluto Download

< 1 2 3 4 5 >