Uses of Interface
org.ojalgo.matrix.transformation.Householder
Packages that use Householder
Package
Description
-
Uses of Householder in org.ojalgo.matrix.decomposition
Methods in org.ojalgo.matrix.decomposition that return HouseholderModifier and TypeMethodDescriptionprotected final Householder
<N> GenericDecomposition.makeHouseholder
(int dimension) Methods in org.ojalgo.matrix.decomposition with parameters of type HouseholderModifier and TypeMethodDescriptionboolean
DecompositionStore.generateApplyAndCopyHouseholderColumn
(int row, int column, Householder<N> destination) boolean
DecompositionStore.generateApplyAndCopyHouseholderRow
(int row, int column, Householder<N> destination) void
DecompositionStore.transformSymmetric
(Householder<N> transformation) -
Uses of Householder in org.ojalgo.matrix.store
Methods in org.ojalgo.matrix.store that return HouseholderModifier and TypeMethodDescriptionPhysicalStore.Factory.makeHouseholder
(int length) PrimitiveFactory.makeHouseholder
(int length) Methods in org.ojalgo.matrix.store with parameters of type HouseholderModifier and TypeMethodDescriptionprivate Householder.Generic
<N> GenericStore.cast
(Householder<N> transformation) (package private) static Householder.Primitive32
R032Store.cast
(Householder<Double> transformation) (package private) static Householder.Primitive64
R064Store.cast
(Householder<Double> transformation) boolean
GenericStore.generateApplyAndCopyHouseholderColumn
(int row, int column, Householder<N> destination) boolean
R064Store.generateApplyAndCopyHouseholderColumn
(int row, int column, Householder<Double> destination) boolean
GenericStore.generateApplyAndCopyHouseholderRow
(int row, int column, Householder<N> destination) boolean
R064Store.generateApplyAndCopyHouseholderRow
(int row, int column, Householder<Double> destination) void
GenericStore.transformLeft
(Householder<N> transformation, int firstColumn) void
PhysicalStore.transformLeft
(Householder<N> transformation, int firstColumn) void
R032Store.transformLeft
(Householder<Double> transformation, int firstColumn) void
R064Store.transformLeft
(Householder<Double> transformation, int firstColumn) void
RawStore.transformLeft
(Householder<Double> transformation, int firstColumn) void
GenericStore.transformRight
(Householder<N> transformation, int firstRow) void
PhysicalStore.transformRight
(Householder<N> transformation, int firstRow) void
R032Store.transformRight
(Householder<Double> transformation, int firstRow) void
R064Store.transformRight
(Householder<Double> transformation, int firstRow) void
RawStore.transformRight
(Householder<Double> transformation, int firstRow) void
GenericStore.transformSymmetric
(Householder<N> transformation) void
R064Store.transformSymmetric
(Householder<Double> transformation) -
Uses of Householder in org.ojalgo.matrix.transformation
Subinterfaces of Householder in org.ojalgo.matrix.transformationClasses in org.ojalgo.matrix.transformation that implement HouseholderModifier and TypeClassDescriptionstatic final class
Householder.Generic<N extends Scalar<N>>
static final class
static final class
(package private) final class
HouseholderColumn<N extends Comparable<N>>
(package private) final class
HouseholderRow<N extends Comparable<N>>
Fields in org.ojalgo.matrix.transformation declared as HouseholderModifier and TypeFieldDescriptionprivate Householder
<N> HouseholderColumn.myWorker
private Householder
<N> HouseholderRow.myWorker
Methods in org.ojalgo.matrix.transformation with type parameters of type HouseholderModifier and TypeMethodDescription<P extends Householder<N>>
PHouseholderColumn.getWorker
(PhysicalStore.Factory<N, ?> factory) <P extends Householder<N>>
PHouseholderReference.getWorker
(PhysicalStore.Factory<N, ?> factory) <P extends Householder<N>>
PHouseholderRow.getWorker
(PhysicalStore.Factory<N, ?> factory) Methods in org.ojalgo.matrix.transformation with parameters of type HouseholderModifier and TypeMethodDescriptionHouseholder.Generic.copy
(Householder<N> source) Householder.Generic.copy
(Householder<N> source, N precalculatedBeta) Householder.Primitive32.copy
(Householder<Double> source) Householder.Primitive32.copy
(Householder<Double> source, float precalculatedBeta) Householder.Primitive64.copy
(Householder<Double> source) Householder.Primitive64.copy
(Householder<Double> source, double precalculatedBeta) Constructors in org.ojalgo.matrix.transformation with parameters of type HouseholderModifierConstructorDescriptionGeneric
(Scalar.Factory<N> factory, Householder<N> aTransf) Primitive32
(Householder<Double> aTransf) Primitive64
(Householder<Double> aTransf)