org.ejml.alg.dense.linsol
Class InvertUsingSolve

java.lang.Object
  extended by org.ejml.alg.dense.linsol.InvertUsingSolve

public class InvertUsingSolve
extends Object

A matrix can be easily inverted by solving a system with an identify matrix. The only disadvantage of this approach is that additional computations are required compared to a specialized solution.

Author:
Peter Abeles

Constructor Summary
InvertUsingSolve()
           
 
Method Summary
static void invert(LinearSolver solver, RowD1Matrix64F A, DenseMatrix64F A_inv)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InvertUsingSolve

public InvertUsingSolve()
Method Detail

invert

public static void invert(LinearSolver solver,
                          RowD1Matrix64F A,
                          DenseMatrix64F A_inv)


Copyright © 2011. All Rights Reserved.