Package org.jblas

Class Decompose.LUDecomposition<T>

  • Type Parameters:
    T -
    Enclosing class:
    Decompose

    public static class Decompose.LUDecomposition<T>
    extends java.lang.Object
    Class to hold an LU decomposition result. Contains a lower matrix L, and upper matrix U, and a permutation matrix P such that P*L*U is the original matrix.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      T l  
      T p  
      T u  
    • Constructor Summary

      Constructors 
      Constructor Description
      LUDecomposition​(T l, T u, T p)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • l

        public T l
      • u

        public T u
      • p

        public T p
    • Method Detail

      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object