Flowdock
method

l

Importance_0
v1_9_3_125 - Show latest stable - 0 notes - Class: LUPDecomposition
l() public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/matrix/lup_decomposition.rb, line 21
    def l
      Matrix.build(@row_size, @col_size) do |i, j|
        if (i > j)
          @lu[i][j]
        elsif (i == j)
          1
        else
          0
        end
      end
    end
Register or log in to add new notes.