File: f.rb

package info (click to toggle)
ruby-distribution 0.7.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 572 kB
  • ctags: 370
  • sloc: ruby: 4,270; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 781 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'distribution/f/ruby'
require 'distribution/f/gsl'
require 'distribution/f/statistics2'
require 'distribution/f/java'
module Distribution
  # Calculate cdf and inverse cdf for F Distribution.
  # 
  module F
    SHORTHAND='fdist'  
    extend Distributable
    create_distribution_methods
    
    ##
    # :singleton-method: pdf(x,k1,k2)
    # Returns the PDF of F distribution 
    # with +k1+ and +k2+ degrees of freedom over [0, +x+]    

    ##
    # :singleton-method: p_value(qn, k1, k2)
    # Return the P-value of the corresponding integral +qn+ with 
    # +k1+ and +k2+ degrees of freedom    
    
    ##
    # :singleton-method: cdf(x,k1,k2)
    # Returns the integral of F distribution 
    # with +k1+ and +k2+ degrees of freedom over [0, +x+]    

  end
end