scalation.linalgebra.par

Fac_Cholesky

Related Doc: package par

class Fac_Cholesky extends Factorization with Error

The Fac_Cholesky class provides methods to factor an 'n-by-n' symmetric, positive definite matrix 'a' into the product of two matrices:

'l' - an 'n-by-n' left lower triangular matrix 'l.t' - an 'n-by-n' right upper triangular matrix - transpose of 'l'

such that 'a = l * l.t'. This version uses parallel processing to speed up execution.

Linear Supertypes
Error, Factorization, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Fac_Cholesky
  2. Error
  3. Factorization
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Fac_Cholesky(a: MatrixD)

    a

    the symmetric, positive definite matrix to be factor

Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  8. def factor(): (MatrixD, MatrixD)

    Factor matrix 'a' into the product of 'l' and 'l.t', returning both.

    Factor matrix 'a' into the product of 'l' and 'l.t', returning both.

    Definition Classes
    Fac_CholeskyFactorization
  9. def factor1(): MatrixD

    Factor matrix 'a' into the product of 'l' and 'l.t', returning the lower triangular matrix 'l' from the Cholesky Fractorization 'a = l * l.t' where 'l.t' is the transpose.

    Factor matrix 'a' into the product of 'l' and 'l.t', returning the lower triangular matrix 'l' from the Cholesky Fractorization 'a = l * l.t' where 'l.t' is the transpose. It uses the Cholesky–Banachiewicz algorithm.

    Definition Classes
    Fac_CholeskyFactorization
    See also

    introcs.cs.princeton.edu/java/95linear

  10. def factor2(): MatrixD

    Factor matrix 'a' into the product of 'l' and 'l.t', returning l.t.

    Factor matrix 'a' into the product of 'l' and 'l.t', returning l.t.

    Definition Classes
    Fac_CholeskyFactorization
  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. def flaw(method: String, message: String): Unit

    Show the flaw by printing the error message.

    Show the flaw by printing the error message.

    method

    the method where the error occurred

    message

    the error message

    Definition Classes
    Error
  13. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  19. var raw: Boolean

    Attributes
    protected
    Definition Classes
    Factorization
  20. def solve(b: VectorD): VectorD

    Use the lower triangular matrix 'l' from the Cholesky Fractorization to solve a system of equations 'a * x = b'.

    Use the lower triangular matrix 'l' from the Cholesky Fractorization to solve a system of equations 'a * x = b'. Return the solution x using forward and backward substitution.

    b

    the constant vector

    Definition Classes
    Fac_CholeskyFactorization
  21. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Error

Inherited from Factorization

Inherited from AnyRef

Inherited from Any

Ungrouped