Package org.ojalgo.matrix.decomposition
Interface Hessenberg<N extends Comparable<N>>
- All Superinterfaces:
MatrixDecomposition<N>
,Structure1D
,Structure2D
- All Known Implementing Classes:
HessenbergDecomposition
,HessenbergDecomposition.C128
,HessenbergDecomposition.H256
,HessenbergDecomposition.Q128
,HessenbergDecomposition.R064
,HessenbergDecomposition.R128
Hessenberg: [A] = [Q][H][Q]T A general square matrix [A] can be decomposed by orthogonal
similarity transformations into the form [A]=[Q][H][Q]T where
- [H] is upper (or lower) hessenberg matrix
- [Q] is orthogonal/unitary
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interface
Hessenberg.Factory<N extends Comparable<N>>
Nested classes/interfaces inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition
MatrixDecomposition.Determinant<N extends Comparable<N>>, MatrixDecomposition.EconomySize<N extends Comparable<N>>, MatrixDecomposition.Hermitian<N extends Comparable<N>>, MatrixDecomposition.Ordered<N extends Comparable<N>>, MatrixDecomposition.Pivoting<N extends Comparable<N>>, MatrixDecomposition.RankRevealing<N extends Comparable<N>>, MatrixDecomposition.Solver<N extends Comparable<N>>, MatrixDecomposition.Values<N extends Comparable<N>>
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.LongIndex, Structure1D.LoopCallback
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure2D
Structure2D.IntRowColumn, Structure2D.Logical<S extends Structure2D,
B extends Structure2D.Logical<S, B>>, Structure2D.LongRowColumn, Structure2D.ReducibleTo1D<R extends Structure1D>, Structure2D.Reshapable, Structure2D.RowColumnKey<R, C>, Structure2D.RowColumnMapper<R, C> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Hessenberg.Factory
<ComplexNumber> static final Hessenberg.Factory
<Quaternion> static final Hessenberg.Factory
<RationalNumber> static final Hessenberg.Factory
<Double> static final Hessenberg.Factory
<Quadruple> Fields inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition
TYPICAL
-
Method Summary
Modifier and TypeMethodDescriptionboolean
compute
(Access2D.Collectable<N, ? super PhysicalStore<N>> matrix, boolean upper) static <N extends Comparable<N>>
booleanequals
(MatrixStore<N> matrix, Hessenberg<N> decomposition, NumberContext context) getH()
getQ()
boolean
isUpper()
default MatrixStore
<N> Methods inherited from interface org.ojalgo.matrix.decomposition.MatrixDecomposition
decompose, isComputed, reset
Methods inherited from interface org.ojalgo.structure.Structure2D
count, countColumns, countRows, firstInColumn, firstInRow, getColDim, getMaxDim, getMinDim, getRowDim, isEmpty, isFat, isScalar, isSquare, isTall, isVector, limitOfColumn, limitOfRow, size
-
Field Details
-
C128
-
H256
-
Q128
-
R064
-
R128
-
-
Method Details
-
equals
static <N extends Comparable<N>> boolean equals(MatrixStore<N> matrix, Hessenberg<N> decomposition, NumberContext context) -
compute
-
getH
MatrixStore<N> getH() -
getQ
MatrixStore<N> getQ() -
isUpper
boolean isUpper() -
reconstruct
- Specified by:
reconstruct
in interfaceMatrixDecomposition<N extends Comparable<N>>
-