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.473.364 Times

Marine Life Research Statistics software
Filter: All | Freeware | Demo
 

Marine Life Research Statistics

< 1 2 3 4 5 > 
Added: March 26, 2010 | Visits: 961

Statistics::GammaDistribution Statistics::GammaDistribution Perl module represents a gamma distribution. SYNOPSIS use Statistics::GammaDistribution; my $g = Statistics::GammaDistribution->new(); $g->set_order(8.5); print $g->rand(1.0); my @alpha = (0.5,4.5,20.5,6.5,1.5,0.5); my @theta = $g->dirichlet_dist(@alpha);...



Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Statistics::GammaDistribution Download

Added: July 23, 2010 | Visits: 969

Statistics::Descriptive::Discrete Statistics::Descriptive::Discrete is a Perl module to compute descriptive statistics for discrete data sets. SYNOPSIS use Statistics::Descriptive::Discrete; my $stats = new Statistics::Descriptive::Discrete; $stats->add_data(1,10,2,0,1,4,5,1,10,8,7); print "count = ",$stats->count(),"n";...





Platforms: *nix

License: Freeware Size: 7.17 KB Download (113): Statistics::Descriptive::Discrete Download

Added: September 13, 2010 | Visits: 1.125

Still Life Still Life Brushed provides an icon pack for Gnome. Based on Still Life, with brushed steel look (to integrate with Tiger-ish themes)..


Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 501.76 KB Download (101): Still Life Download

Added: February 17, 2010 | Visits: 1.211

Statistics::LineFit Statistics::LineFit module least squares line fit, weighted or unweighted. SYNOPSIS use Statistics::LineFit; $lineFit = Statistics::LineFit->new(); $lineFit->setData (@xValues, @yValues) or die "Invalid data"; ($intercept, $slope) = $lineFit->coefficients(); defined $intercept or die...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (128): Statistics::LineFit Download

Added: August 15, 2010 | Visits: 1.174

Distributed Artificial Life Distributed Artificial Life project uses spare CPU cycles to create life. Distributed Artificial Life is a distributed version of Tom S. Rays Tierra artificial life program. It uses spare CPU cycles to simulate a distributed soup of living cells. Note that the machine language used is similar...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (107): Distributed Artificial Life Download

Added: January 14, 2010 | Visits: 881

Statistics::SDT Statistics::SDT Perl package contains signal detection theory measures of sensitivity and response-bias. SYNOPSIS use Statistics::SDT; $sdt = Statistics::SDT->new( { hits => 50, signal_trials => 50, false_alarms => 17, noise_trials => 25, correct => 2, } ); $d =...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (93): Statistics::SDT Download

Added: July 04, 2010 | Visits: 1.076

Statistics::OLS Statistics::OLS is a Perl module to perform ordinary least squares and associated statistics. SYNOPSIS use Statistics::OLS; my $ls = Statistics::OLS->new(); $ls->setData (@xydataset) or die( $ls->error() ); $ls->setData (@xdataset, @ydataset); $ls->regress(); my ($intercept, $slope)...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (96): Statistics::OLS Download

Released: September 22, 2012  |  Added: September 22, 2012 | Visits: 1.711

Second Life Live CD Second Life Live CD is a Live CD based on Knoppix, for nvidia graphics cards only. Instructions for use on the CD /index.html.


Platforms: *nix

License: Freeware Size: 593 MB Download (148): Second Life Live CD Download

Added: April 23, 2010 | Visits: 998

Statistics::GaussHelmert Statistics::GaussHelmert is a general weighted least squares estimation module. SYNOPSIS use Statistics::GaussHelmert; # create an empty model my $estimation = new Statistics::GaussHelmert; # setup the model given observations $y, covariance matrices # $Sigma_yy, an initial guess $b0...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (123): Statistics::GaussHelmert Download

Added: November 02, 2010 | Visits: 1.237

Amiga Research Operating System Amiga Research Operating System (AROS) is a portable and free desktop operating system aiming at being compatible with AmigaOS 3.1, while improving on it in many areas. The source code is available under an open source license, which allows anyone to freely improve upon it. Goals The goals of...


Platforms: *nix

License: Shareware Cost: $0.00 USD Size: 18.3 MB Download (120): Amiga Research Operating System Download

Added: September 21, 2010 | Visits: 816

Statistics::LTU Statistics::LTU is an implementation of Linear Threshold Units. SYNOPSIS use Statistics::LTU; my $acr_ltu = new Statistics::LTU::ACR(3, 1); # 3 attributes, scaled $ltu->train([1,3,2], $LTU_PLUS); $ltu->train([-1,3,0], $LTU_MINUS); ... print "LTU looks like this:n"; $ltu->print;...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (88): Statistics::LTU Download

Added: February 06, 2010 | Visits: 1.428

Web Statistics Montage Web Statistics Montage is a great web statistics tool to add to your arsenal. Firstly, you need to be using a web host that uses the cPanel control panel and that also has AWStats enabled. Since cPanel is the most popular control panel on the market for Linux servers, this script should be useful...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (104): Web Statistics Montage Download

Added: November 16, 2010 | Visits: 1.078

Statistics::ChisqIndep Statistics::ChisqIndep is a Perl module to perform chi-square test of independence (a.k.a. contingency tables). Synopsis #example for Statistics::ChisqIndep use strict; use Statistics::ChisqIndep; use POSIX; # input data in the form of the array of array references my @obs = ([15, 68,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (119): Statistics::ChisqIndep Download

Added: November 08, 2010 | Visits: 871

Statistics::PointEstimation Statistics::PointEstimation is a Perl module for computing confidence intervals in parameter estimation with Students T distribution. Statistics::PointEstimation::Sufficient - Perl module for computing the confidence intervals using sufficient statistics SYNOPSIS # example for...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Statistics::PointEstimation Download

Added: April 23, 2010 | Visits: 837

Statistics::TTest Statistics::TTest is a Perl module to perform T-test on 2 independent samples. Statistics::TTest::Sufficient - Perl module to perfrom T-Test on 2 indepdent samples using sufficient statistics SYNOPSIS #example for Statistics::TTest use Statistics::PointEstimation; use Statistics::TTest;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (91): Statistics::TTest Download

Released: June 06, 2014  |  Added: June 12, 2014 | Visits: 2.485

Wheel Of Life The program would help you not lose the taste for life while remaining productive. The basic concept of the program was taken from the wheel of life, which contains the most important areas of human's activities. The program enables you to monitor your current state for each of those areas....


Platforms: Windows, Windows 8, Windows 7

License: Shareware Cost: $19.95 USD Size: 2.19 MB Download (795): Wheel Of Life Download

Released: November 11, 2013  |  Added: December 03, 2013 | Visits: 2.585

Wheel Of Life Lite The program helps you to easily find out your life balance by assessing the main areas of a human's life: business and career, finances, health, relationships with family and friends, love relationships, personal development, entertainment and physical environment. Just assess each of these areas...


Platforms: Windows, Windows 8, Windows 7

License: Freeware Size: 3.33 MB Download (811): Wheel Of Life Lite Download

Released: February 10, 2014  |  Added: February 23, 2014 | Visits: 1.099

Wheel Of Life Mac The program would help you not lose the taste for life while remaining productive. The basic concept of the program was taken from the wheel of life, which contains the most important areas of human's activities. The program enables you to monitor your current state for each of those areas....


Platforms: Mac

License: Shareware Cost: $19.95 USD Size: 4.02 MB Download (107): Wheel Of Life Mac Download

Released: February 18, 2011  |  Added: February 24, 2011 | Visits: 1.173

Wheel Of Life Lite Mac The program helps you to easily find out your life balance by assessing the main areas of a human's life: business and career, finances, health, relationships with family and friends, love relationships, personal development, entertainment and physical environment. Just assess each of these areas...


Platforms: Mac

License: Freeware Size: 1.05 MB Download (574): Wheel Of Life Lite Mac Download

Released: July 15, 2012  |  Added: August 13, 2012 | Visits: 990

The Wheel Of Life Lite The program helps you to easily find out your life balance by assessing the main areas of a human's life: business and career, finances, health, relationships with family and friends, love relationships, personal development, entertainment and physical environment. Just assess each of these areas...


Platforms: Windows

License: Freeware Size: 3.33 MB Download (515): The Wheel Of Life Lite Download

< 1 2 3 4 5 >