summaryrefslogtreecommitdiff
path: root/spec/ruby/library/matrix/lup_decomposition/l_spec.rb
blob: 9514ab5d06356114205e8bbe72f3652e3a13701c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative '../../../spec_helper'
require 'matrix'

describe "Matrix::LUPDecomposition#l" do
  before :each do
    @a = Matrix[[7, 8, 9], [14, 46, 51], [28, 82, 163]]
    @lu = Matrix::LUPDecomposition.new(@a)
    @l = @lu.l
  end

  it "returns the first element of to_a" do
    @l.should == @lu.to_a[0]
  end

  it "returns a lower triangular matrix" do
    @l.lower_triangular?.should be_true
  end
end