Class CholeskyDecomposer

java.lang.Object
org.hipparchus.linear.CholeskyDecomposer
All Implemented Interfaces:
MatrixDecomposer

public class CholeskyDecomposer extends Object implements MatrixDecomposer
Matrix decomposer using Cholseky decomposition.
Since:
1.3
  • Constructor Details

    • CholeskyDecomposer

      public CholeskyDecomposer(double relativeSymmetryThreshold, double absolutePositivityThreshold)
      Creates a Cholesky decomposer with specify threshold for several matrices.
      Parameters:
      relativeSymmetryThreshold - threshold above which off-diagonal elements are considered too different and matrix not symmetric
      absolutePositivityThreshold - threshold below which diagonal elements are considered null and matrix not positive definite
  • Method Details