Uses of Interface
org.ojalgo.matrix.transformation.Householder
-
Packages that use Householder Package Description org.ojalgo.matrix.decomposition org.ojalgo.matrix.store org.ojalgo.matrix.transformation -
-
Uses of Householder in org.ojalgo.matrix.decomposition
Methods in org.ojalgo.matrix.decomposition that return Householder Modifier and Type Method Description protected Householder<N>
GenericDecomposition. makeHouseholder(int dimension)
Methods in org.ojalgo.matrix.decomposition with parameters of type Householder Modifier and Type Method Description boolean
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 Householder Modifier and Type Method Description Householder<N>
PhysicalStore.Factory. makeHouseholder(int length)
Householder<java.lang.Double>
PrimitiveFactory. makeHouseholder(int length)
Methods in org.ojalgo.matrix.store with parameters of type Householder Modifier and Type Method Description private Householder.Generic<N>
GenericStore. cast(Householder<N> transformation)
(package private) static Householder.Primitive32
R032Store. cast(Householder<java.lang.Double> transformation)
(package private) static Householder.Primitive64
R064Store. cast(Householder<java.lang.Double> transformation)
boolean
GenericStore. generateApplyAndCopyHouseholderColumn(int row, int column, Householder<N> destination)
boolean
R064Store. generateApplyAndCopyHouseholderColumn(int row, int column, Householder<java.lang.Double> destination)
boolean
GenericStore. generateApplyAndCopyHouseholderRow(int row, int column, Householder<N> destination)
boolean
R064Store. generateApplyAndCopyHouseholderRow(int row, int column, Householder<java.lang.Double> destination)
void
GenericStore. transformLeft(Householder<N> transformation, int firstColumn)
void
PhysicalStore. transformLeft(Householder<N> transformation, int firstColumn)
void
R032Store. transformLeft(Householder<java.lang.Double> transformation, int firstColumn)
void
R064Store. transformLeft(Householder<java.lang.Double> transformation, int firstColumn)
void
RawStore. transformLeft(Householder<java.lang.Double> transformation, int firstColumn)
void
GenericStore. transformRight(Householder<N> transformation, int firstRow)
void
PhysicalStore. transformRight(Householder<N> transformation, int firstRow)
void
R032Store. transformRight(Householder<java.lang.Double> transformation, int firstRow)
void
R064Store. transformRight(Householder<java.lang.Double> transformation, int firstRow)
void
RawStore. transformRight(Householder<java.lang.Double> transformation, int firstRow)
void
GenericStore. transformSymmetric(Householder<N> transformation)
void
R064Store. transformSymmetric(Householder<java.lang.Double> transformation)
-
Uses of Householder in org.ojalgo.matrix.transformation
Subinterfaces of Householder in org.ojalgo.matrix.transformation Modifier and Type Interface Description interface
HouseholderReference<N extends java.lang.Comparable<N>>
Classes in org.ojalgo.matrix.transformation that implement Householder Modifier and Type Class Description static class
Householder.Generic<N extends Scalar<N>>
static class
Householder.Primitive32
static class
Householder.Primitive64
(package private) class
HouseholderColumn<N extends java.lang.Comparable<N>>
(package private) class
HouseholderRow<N extends java.lang.Comparable<N>>
Fields in org.ojalgo.matrix.transformation declared as Householder Modifier and Type Field Description private Householder<N>
HouseholderColumn. myWorker
private Householder<N>
HouseholderRow. myWorker
Methods in org.ojalgo.matrix.transformation with type parameters of type Householder Modifier and Type Method Description <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 Householder Modifier and Type Method Description Householder.Generic<N>
Householder.Generic. copy(Householder<N> source)
Householder.Generic<N>
Householder.Generic. copy(Householder<N> source, N precalculatedBeta)
Householder.Primitive32
Householder.Primitive32. copy(Householder<java.lang.Double> source)
Householder.Primitive32
Householder.Primitive32. copy(Householder<java.lang.Double> source, float precalculatedBeta)
Householder.Primitive64
Householder.Primitive64. copy(Householder<java.lang.Double> source)
Householder.Primitive64
Householder.Primitive64. copy(Householder<java.lang.Double> source, double precalculatedBeta)
Constructors in org.ojalgo.matrix.transformation with parameters of type Householder Constructor Description Generic(Scalar.Factory<N> factory, Householder<N> aTransf)
Primitive32(Householder<java.lang.Double> aTransf)
Primitive64(Householder<java.lang.Double> aTransf)
-