Flowdock
method

l

Importance_0
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 22
    def l
      Matrix.build(@row_count, [@column_count, @row_count].min) 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.