Uses of Class
com.irurueta.algebra.SingularMatrixException

Packages that use SingularMatrixException
Package
Description
This package contains classes related to algebra, such as Matrix class to contains matrices data and simple operations or Complex to handle computations with Complex numbers.
  • Uses of SingularMatrixException in com.irurueta.algebra

    Modifier and Type
    Method
    Description
    static void
    GaussJordanElimination.inverse(Matrix a)
    Computes inverse of matrix "a".
    static void
    GaussJordanElimination.process(Matrix a, double[] b)
    Computes Gauss-Jordan elimination by attempting to solve linear system of equations a * x = b.
    static void
    GaussJordanElimination.process(Matrix a, Matrix b)
    Computes Gauss-Jordan elimination by attempting to solve linear system of equations a * x = b.
    LUDecomposer.solve(Matrix b)
    Solves a linear system of equations of the following form: A * X = B.
    LUDecomposer.solve(Matrix b, double roundingError)
    Solves a linear system of equations of the following form: A * X = B.
    void
    LUDecomposer.solve(Matrix b, double roundingError, Matrix result)
    Solves a linear system of equations of the following form: A * X = B.
    void
    LUDecomposer.solve(Matrix b, Matrix result)
    Solves a linear system of equations of the following form: A * X = B.