summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/matrix/minor_spec.rb
blob: e02e0de07dfb67c48e110466610a8d60fb6d77a7 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
require File.expand_path('../../../spec_helper', __FILE__)
require File.expand_path('../fixtures/classes', __FILE__)
require 'matrix'

describe "Matrix#minor" do
  before :each do
    @matrix = Matrix[ [1,2], [3,4], [5,6] ]
  end

  describe "with start_row, nrows, start_col, ncols" do
    it "returns the given portion of the Matrix" do
      @matrix.minor(0,1,0,2).should == Matrix[ [1, 2] ]
      @matrix.minor(1,2,1,1).should == Matrix[ [4], [6] ]
    end

    it "returns an empty Matrix if nrows or ncols is 0" do
      @matrix.minor(0,0,0,0).should == Matrix[]
      @matrix.minor(1,0,1,0).should == Matrix[]
      @matrix.minor(1,0,1,1).should == Matrix.columns([[]])
      @matrix.minor(1,1,1,0).should == Matrix[[]]
    end

    it "returns nil for out-of-bounds start_row/col" do
      r = @matrix.row_size + 1
      c = @matrix.column_size + 1
      @matrix.minor(r,0,0,10).should == nil
      @matrix.minor(0,10,c,9).should == nil
      @matrix.minor(-r,0,0,10).should == nil
      @matrix.minor(0,10,-c,9).should == nil
    end

    it "returns nil for negative nrows or ncols" do
      @matrix.minor(0,1,0,-1).should == nil
      @matrix.minor(0,-1,0,1).should == nil
    end

    it "start counting backwards for start_row or start_col below zero" do
      @matrix.minor(0, 1, -1, 1).should == @matrix.minor(0, 1, 1, 1)
      @matrix.minor(-1, 1, 0, 1).should == @matrix.minor(2, 1, 0, 1)
    end

    it "returns empty matrices for extreme start_row/col" do
      @matrix.minor(3,10,1,10).should == Matrix.columns([[]])
      @matrix.minor(1,10,2,10).should == Matrix[[], []]
      @matrix.minor(3,0,0,10).should == Matrix.columns([[], []])
    end

    it "ignores big nrows or ncols" do
      @matrix.minor(0,1,0,20).should == Matrix[ [1, 2] ]
      @matrix.minor(1,20,1,1).should == Matrix[ [4], [6] ]
    end
  end

  describe "with col_range, row_range" do
    it "returns the given portion of the Matrix" do
      @matrix.minor(0..0, 0..1).should == Matrix[ [1, 2] ]
      @matrix.minor(1..2, 1..2).should == Matrix[ [4], [6] ]
      @matrix.minor(1...3, 1...3).should == Matrix[ [4], [6] ]
    end

    it "returns nil if col_range or row_range is out of range" do
      r = @matrix.row_size + 1
      c = @matrix.column_size + 1
      @matrix.minor(r..6, c..6).should == nil
      @matrix.minor(0..1, c..6).should == nil
      @matrix.minor(r..6, 0..1).should == nil
      @matrix.minor(-r..6, -c..6).should == nil
      @matrix.minor(0..1, -c..6).should == nil
      @matrix.minor(-r..6, 0..1).should == nil
    end

    it "start counting backwards for col_range or row_range below zero" do
      @matrix.minor(0..1, -2..-1).should == @matrix.minor(0..1, 0..1)
      @matrix.minor(0..1, -2..1).should == @matrix.minor(0..1, 0..1)
      @matrix.minor(-2..-1, 0..1).should == @matrix.minor(1..2, 0..1)
      @matrix.minor(-2..2, 0..1).should == @matrix.minor(1..2, 0..1)
    end
  end

  describe "for a subclass of Matrix" do
    it "returns an instance of that subclass" do
      MatrixSub.ins.minor(0, 1, 0, 1).should be_an_instance_of(MatrixSub)
    end
  end
end