Class LinearSolverChol_CDRM

java.lang.Object
org.ejml.dense.row.linsol.LinearSolverAbstract_CDRM
org.ejml.dense.row.linsol.chol.LinearSolverChol_CDRM
All Implemented Interfaces:
org.ejml.interfaces.linsol.LinearSolver<org.ejml.data.CMatrixRMaj,​org.ejml.data.CMatrixRMaj>, org.ejml.interfaces.linsol.LinearSolverDense<org.ejml.data.CMatrixRMaj>

@Generated("org.ejml.dense.row.linsol.chol.LinearSolverChol_ZDRM")
public class LinearSolverChol_CDRM
extends LinearSolverAbstract_CDRM
  • Constructor Details

  • Method Details

    • setA

      public boolean setA​(org.ejml.data.CMatrixRMaj A)
    • quality

      public double quality()
    • solve

      public void solve​(org.ejml.data.CMatrixRMaj B, org.ejml.data.CMatrixRMaj X)

      Using the decomposition, finds the value of 'X' in the linear equation below:
      A*x = b
      where A has dimension of n by n, x and b are n by m dimension.

      *Note* that 'b' and 'x' can be the same matrix instance.

      Parameters:
      B - A matrix that is n by m. Not modified.
      X - An n by m matrix where the solution is writen to. Modified.
    • invert

      public void invert​(org.ejml.data.CMatrixRMaj inv)
      Sets the matrix 'inv' equal to the inverse of the matrix that was decomposed.
      Specified by:
      invert in interface org.ejml.interfaces.linsol.LinearSolverDense<org.ejml.data.CMatrixRMaj>
      Overrides:
      invert in class LinearSolverAbstract_CDRM
      Parameters:
      inv - Where the value of the inverse will be stored. Modified.
    • setToInverseL

      public void setToInverseL​(float[] a)
      Sets the matrix to the inverse using a lower triangular matrix.
    • modifiesA

      public boolean modifiesA()
    • modifiesB

      public boolean modifiesB()
    • getDecomposition

      public org.ejml.interfaces.decomposition.CholeskyDecomposition_F32<org.ejml.data.CMatrixRMaj> getDecomposition()