Uses of Class
org.ojalgo.matrix.transformation.Rotation
-
Packages that use Rotation Package Description org.ojalgo.matrix.decomposition org.ojalgo.matrix.store org.ojalgo.matrix.transformation -
-
Uses of Rotation in org.ojalgo.matrix.decomposition
Methods in org.ojalgo.matrix.decomposition that return Rotation Modifier and Type Method Description protected Rotation<N>
GenericDecomposition. makeRotation(int low, int high, double cos, double sin)
protected Rotation<N>
GenericDecomposition. makeRotation(int low, int high, N cos, N sin)
-
Uses of Rotation in org.ojalgo.matrix.store
Methods in org.ojalgo.matrix.store that return Rotation Modifier and Type Method Description Rotation<N>
PhysicalStore.Factory. makeRotation(int low, int high, double cos, double sin)
Rotation<N>
PhysicalStore.Factory. makeRotation(int low, int high, N cos, N sin)
Methods in org.ojalgo.matrix.store with parameters of type Rotation Modifier and Type Method Description private Rotation.Generic<N>
GenericStore. cast(Rotation<N> transformation)
(package private) static Rotation.Primitive
R032Store. cast(Rotation<java.lang.Double> transformation)
(package private) static Rotation.Primitive
R064Store. cast(Rotation<java.lang.Double> transformation)
(package private) static Rotation.Primitive
RawStore. cast(Rotation<java.lang.Double> aTransf)
void
GenericStore. transformLeft(Rotation<N> transformation)
void
PhysicalStore. transformLeft(Rotation<N> transformation)
As inMatrixStore.premultiply(Access1D)
where the left/parameter matrix is a plane rotation.void
R032Store. transformLeft(Rotation<java.lang.Double> transformation)
void
R064Store. transformLeft(Rotation<java.lang.Double> transformation)
void
RawStore. transformLeft(Rotation<java.lang.Double> transformation)
void
GenericStore. transformRight(Rotation<N> transformation)
void
PhysicalStore. transformRight(Rotation<N> transformation)
As inMatrixStore.multiply(MatrixStore)
where the right/parameter matrix is a plane rotation.void
R032Store. transformRight(Rotation<java.lang.Double> transformation)
void
R064Store. transformRight(Rotation<java.lang.Double> transformation)
void
RawStore. transformRight(Rotation<java.lang.Double> transformation)
-
Uses of Rotation in org.ojalgo.matrix.transformation
Subclasses of Rotation in org.ojalgo.matrix.transformation Modifier and Type Class Description static class
Rotation.Generic<N extends Scalar<N>>
static class
Rotation.Primitive
Methods in org.ojalgo.matrix.transformation that return Rotation Modifier and Type Method Description abstract Rotation<N>
Rotation. invert()
(package private) static Rotation<java.lang.Double>[]
Rotation. rotationsP(PhysicalStore<java.lang.Double> matrix, int low, int high, Rotation<java.lang.Double>[] results)
Methods in org.ojalgo.matrix.transformation with parameters of type Rotation Modifier and Type Method Description (package private) static Rotation<java.lang.Double>[]
Rotation. rotationsP(PhysicalStore<java.lang.Double> matrix, int low, int high, Rotation<java.lang.Double>[] results)
Constructors in org.ojalgo.matrix.transformation with parameters of type Rotation Constructor Description Generic(Rotation<N> aRotation)
Primitive(Rotation<java.lang.Double> aRotation)
-