Class LUDecompositionAlt_FDRM

java.lang.Object
org.ejml.dense.row.decomposition.lu.LUDecompositionBase_FDRM
org.ejml.dense.row.decomposition.lu.LUDecompositionAlt_FDRM
All Implemented Interfaces:
DecompositionInterface<FMatrixRMaj>, LUDecomposition<FMatrixRMaj>, LUDecomposition_F32<FMatrixRMaj>

@Generated("org.ejml.dense.row.decomposition.lu.LUDecompositionAlt_DDRM") public class LUDecompositionAlt_FDRM extends LUDecompositionBase_FDRM

An LU decomposition algorithm that originally came from Jama. In general this is faster than what is in NR since it creates a cache of a column, which makes a big difference in larger matrices.

  • Constructor Details

    • LUDecompositionAlt_FDRM

      public LUDecompositionAlt_FDRM()
  • Method Details

    • decompose

      public boolean decompose(FMatrixRMaj a)
      This is a modified version of what was found in the JAMA package. The order that it performs its permutations in is the primary difference from NR
      Parameters:
      a - The matrix that is to be decomposed. Not modified.
      Returns:
      true If the matrix can be decomposed and false if it can not.