|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectorg.ojalgo.matrix.decomposition.SchurDecomposition<N>
public abstract class SchurDecomposition<N extends Number>
You create instances of (some subclass of) this class by calling the static factory method makePrimitive().
| Nested Class Summary | |
|---|---|
static class |
SchurDecomposition.SchurResult<N extends Number>
|
| Method Summary | ||
|---|---|---|
boolean |
compute(Access2D<?> aMtrx)
|
|
boolean |
equals(MatrixDecomposition<N> aDecomp,
NumberContext aCntxt)
|
|
boolean |
equals(MatrixStore<N> aMtrx,
NumberContext aCntxt)
|
|
boolean |
equals(Object someObj)
|
|
Array1D<ComplexNumber> |
getDiagonal()
|
|
MatrixStore<N> |
getInverse()
The output must be a "right inverse" and a "generalised inverse". |
|
MatrixStore<N> |
getInverse(DecompositionStore<N> preallocated)
Implementiong this method is optional. |
|
MatrixStore<N> |
getQ()
|
|
MatrixStore<N> |
getU()
|
|
boolean |
isAspectRatioNormal()
|
|
boolean |
isComputed()
|
|
boolean |
isFullSize()
|
|
boolean |
isOrdered()
|
|
boolean |
isSolvable()
|
|
static
|
make(Access2D<N> aTypical)
|
|
static Schur<Double> |
makePrimitive()
|
|
MatrixStore<N> |
reconstruct()
|
|
void |
reset()
Delete computed results, and resets attributes to default values |
|
MatrixStore<N> |
solve(MatrixStore<N> aRHS)
[A][X]=[B] or [this][return]=[aRHS] |
|
MatrixStore<N> |
solve(MatrixStore<N> aRHS,
DecompositionStore<N> preallocated)
Implementiong this method is optional. |
|
| Methods inherited from class java.lang.Object |
|---|
getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Methods inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition |
|---|
equals, getInverse, getInverse, isComputed, solve, solve |
| Method Detail |
|---|
public static final <N extends Number> Schur<N> make(Access2D<N> aTypical)
public static final Schur<Double> makePrimitive()
public boolean compute(Access2D<?> aMtrx)
compute in interface MatrixDecomposition<N extends Number>aMtrx - A matrix to decompose
public boolean equals(MatrixStore<N> aMtrx,
NumberContext aCntxt)
equals in interface MatrixDecomposition<N extends Number>public Array1D<ComplexNumber> getDiagonal()
getDiagonal in interface Schur<N extends Number>public MatrixStore<N> getQ()
getQ in interface Schur<N extends Number>public MatrixStore<N> getU()
getU in interface Schur<N extends Number>public boolean isFullSize()
isFullSize in interface MatrixDecomposition<N extends Number>public boolean isOrdered()
isOrdered in interface Schur<N extends Number>public boolean isSolvable()
isSolvable in interface MatrixDecomposition<N extends Number>MatrixDecomposition.solve(MatrixStore),
MatrixDecomposition.isComputed()public MatrixStore<N> reconstruct()
reconstruct in interface MatrixDecomposition<N extends Number>public void reset()
MatrixDecomposition
reset in interface MatrixDecomposition<N extends Number>public MatrixStore<N> getInverse()
MatrixDecomposition
BasicMatrix.invert()public MatrixStore<N> getInverse(DecompositionStore<N> preallocated)
MatrixDecompositionImplementiong this method is optional.
Exactly how a specific implementation makes use of preallocated
is not specified by this interface. It must be documented for each
implementation.
Should produce the same results as calling MatrixDecomposition.getInverse().
preallocated - Preallocated memory for the results, possibly some
intermediate results. You must assume this is modified, but you
cannot assume it will contain the full/final/correct solution.
public MatrixStore<N> solve(MatrixStore<N> aRHS)
MatrixDecomposition
public MatrixStore<N> solve(MatrixStore<N> aRHS,
DecompositionStore<N> preallocated)
MatrixDecompositionImplementiong this method is optional.
Exactly how a specific implementation makes use of preallocated
is not specified by this interface. It must be documented for each
implementation.
Should produce the same results as calling MatrixDecomposition.solve(MatrixStore).
aRHS - The Right Hand Side, wont be modfiedpreallocated - Preallocated memory for the results, possibly some
intermediate results. You must assume this is modified, but you
cannot assume it will contain the full/final/correct solution.
public final boolean equals(MatrixDecomposition<N> aDecomp,
NumberContext aCntxt)
equals in interface MatrixDecomposition<N extends Number>public boolean equals(Object someObj)
equals in class Objectpublic boolean isAspectRatioNormal()
public final boolean isComputed()
isComputed in interface MatrixDecomposition<N extends Number>MatrixDecomposition.compute(Access2D),
MatrixDecomposition.isSolvable()
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||