Package org.lsmp.djep.jama

Wrapper for JAMA matrix operations for use in vectorJep and matrixJep.

See:
          Description

Class Summary
Inverse Find the inverses of a matrix.
JamaUtil Utility functions for adding Jama matrix functions.
Rank Find the rank of a matrix.
Solve z = solve(x,y) solves x*z = y where x,y,z are real matricies.
 

Package org.lsmp.djep.jama Description

Wrapper for JAMA matrix operations for use in vectorJep and matrixJep. To add these functions to a VectorJep or MatrixJep instance use

VectorJep j = new VectorJep();
j.addStandardFunctions();
...
JamaUtil.addStandardFunctions(j);
This will add a rank, inverse and solve function. z = solve(x,y) solves x*z = y.

See Also:
org.lsmp.djep.vectorJep, org.lsmp.djep.matrixJep, http://math.nist.gov/javanumerics/jama/


http://www.singularsys.com/jep Copyright © 2007 Singular Systems