summaryrefslogtreecommitdiff
path: root/spec/rubyspec/library/matrix/lup_decomposition/u_spec.rb
blob: 97e8580c58ad2378331453b614e6ef0e8547d6f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../../../../spec_helper', __FILE__)
require 'matrix'

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

  it "returns the second element of to_a" do
    @u.should == @lu.to_a[1]
  end

  it "returns an upper triangular matrix" do
    @u.upper_triangular?.should be_true
  end
end