File: bivariatenormal_spec.rb

package info (click to toggle)
ruby-distribution 0.7.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 624 kB
  • ctags: 379
  • sloc: ruby: 4,283; makefile: 7
file content (63 lines) | stat: -rw-r--r-- 1,942 bytes parent folder | download | duplicates (3)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require File.expand_path(File.dirname(__FILE__)+"/spec_helper.rb")
include ExampleWithGSL
describe Distribution::BivariateNormal do
  shared_examples_for "all pdf normal capables engines" do
    it_only_with_gsl "should return correct pdf" do
      if @engine.respond_to? :pdf
        [0.2,0.4,0.6,0.8,0.9, 0.99,0.999,0.999999].each {|rho|
          @engine.pdf(0,0, rho , 1,1).should be_within(1e-8).of(GSL::Ran::bivariate_gaussian_pdf(0, 0, 1,1,rho))
        }
      else
        pending("No #{@engine}.pdf")
      end
    end
  end
  
  shared_examples_for "all cdf normal capables engines" do
    it "should return correct cdf" do
      if @engine.respond_to? :cdf
        @engine.cdf(2,0.5,0.5).should be_within(1e-3).of(0.686)
        @engine.cdf(2,0.0,0.5).should be_within(1e-3).of(0.498)
        @engine.cdf(1.5,0.5,0.5).should be_within(1e-3).of(0.671)
        v=rand
        @engine.cdf(10,0,v).should be_within(1e-3).of(Distribution::Normal.cdf(0))
      else
          pending("No #{@engine}.cdf")
        
      end
    end
    
  end
  describe "singleton" do
    before do
      @engine=Distribution::BivariateNormal
    end
    it_should_behave_like "all pdf normal capables engines"    
    it_should_behave_like "all cdf normal capables engines"    
    
  end
  
  describe Distribution::Normal::Ruby_ do
    before do
      @engine=Distribution::BivariateNormal::Ruby_
    end
    it_should_behave_like "all pdf normal capables engines"    
    it_should_behave_like "all cdf normal capables engines"    
    it "Ganz method should return similar method to Hull one" do
      [-3,-2,-1,0,1,1.5].each {|x|      
        @engine.cdf_hull(x,x,0.5).should be_within(0.001).of(@engine.cdf_genz(x,x,0.5))

      }
    end
    
  end
  describe Distribution::Normal::GSL_ do
    before do
      @engine=Distribution::BivariateNormal::GSL_
    end
    it_should_behave_like "all pdf normal capables engines"    

  end
  
  
end