abscondment / statistics2
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Jan 26 11:16:17 -0800 2010 | |
| |
History.rdoc | Mon Jun 08 15:47:48 -0700 2009 | |
| |
Manifest.txt | Wed Jun 10 17:18:47 -0700 2009 | |
| |
README.rdoc | Wed Jun 10 17:25:47 -0700 2009 | |
| |
Rakefile | ||
| |
examples/ | Mon Jun 08 17:04:03 -0700 2009 | |
| |
ext/ | Thu Jun 11 11:52:30 -0700 2009 | |
| |
lib/ | Wed Jun 10 18:18:42 -0700 2009 | |
| |
statistics2.gemspec | ||
| |
test/ |
README.rdoc
Statistics2: Statistical Distributions for Ruby
Authors: Shin-ichiro HARA(sinara@blade.nagaokaut.ac.jp), Brendan Ribera (brendan.ribera@gmail.com)
REQUIREMENTS:
* ruby-1.8 or higher
INSTALL:
* Get the gem from Github!
$ gem sources -a http://gems.github.com (you only have to do this once)
$ sudo gem install abscondment-statistics2
USAGE:
- Example:
require "statistics2" puts Statistics2.normaldist(0.27) #=> 0.60641987319804
- If you don’t want to use the C extension:
require "statistics2/no_ext" puts Statistics2.normaldist(0.27) #=> 0.606419873198039 (delta of 9.99200722162641e-16)
LICENSE:
Ruby’s (see www.ruby-lang.org/en/LICENSE.txt)

