|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.jblas.Solve
public class Solve
Solving linear equations.
Constructor Summary | |
---|---|
Solve()
|
Method Summary | |
---|---|
static DoubleMatrix |
solve(DoubleMatrix A,
DoubleMatrix B)
Solves the linear equation A*X = B. |
static FloatMatrix |
solve(FloatMatrix A,
FloatMatrix B)
Solves the linear equation A*X = B. |
static DoubleMatrix |
solvePositive(DoubleMatrix A,
DoubleMatrix B)
Solves the linear equation A*X = B for symmetric and positive definite A. |
static FloatMatrix |
solvePositive(FloatMatrix A,
FloatMatrix B)
Solves the linear equation A*X = B for symmetric and positive definite A. |
static DoubleMatrix |
solveSymmetric(DoubleMatrix A,
DoubleMatrix B)
Solves the linear equation A*X = B for symmetric A. |
static FloatMatrix |
solveSymmetric(FloatMatrix A,
FloatMatrix B)
Solves the linear equation A*X = B for symmetric A. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Solve()
Method Detail |
---|
public static DoubleMatrix solve(DoubleMatrix A, DoubleMatrix B)
public static DoubleMatrix solveSymmetric(DoubleMatrix A, DoubleMatrix B)
public static DoubleMatrix solvePositive(DoubleMatrix A, DoubleMatrix B)
public static FloatMatrix solve(FloatMatrix A, FloatMatrix B)
public static FloatMatrix solveSymmetric(FloatMatrix A, FloatMatrix B)
public static FloatMatrix solvePositive(FloatMatrix A, FloatMatrix B)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |