![]() |
Eigen
3.4.90 (git rev 9589cc4e7fd8e4538bedef80dd36c7738977a8be)
|
#include <Eigen/src/Jacobi/Jacobi.h>
Rotation given by a cosine-sine pair.
This is defined in the Jacobi module.
This class represents a Jacobi or Givens rotation. This is a 2D rotation in the plane J
of angle c
and sine s
as follow:
You can apply the respective counter-clockwise rotation to a column vector v
by applying its adjoint on the left:
Public Member Functions | |
JacobiRotation | adjoint () const |
JacobiRotation () | |
JacobiRotation (const Scalar &c, const Scalar &s) | |
void | makeGivens (const Scalar &p, const Scalar &q, Scalar *r=0) |
template<typename Derived> | |
bool | makeJacobi (const MatrixBase< Derived > &, Index p, Index q) |
bool | makeJacobi (const RealScalar &x, const Scalar &y, const RealScalar &z) |
JacobiRotation | operator* (const JacobiRotation &other) |
JacobiRotation | transpose () const |
|
inline |
Default constructor without any initialization.
|
inline |
Construct a planar rotation from a cosine-sine pair (c, s
).
|
inline |
Returns the adjoint transformation
void Eigen::JacobiRotation< Scalar >::makeGivens | ( | const Scalar & | p, |
const Scalar & | q, | ||
Scalar * | r = 0 ) |
Makes *this
as a Givens rotation G
such that applying
The value of r is returned if r is not null (the default is null). Also note that G is built such that the cosine is always real.
Example:
Output:
Here is the vector v: -0.824 0.924 Here is the vector J' * v: 1.24 -5.96e-08
This function implements the continuous Givens rotation generation algorithm found in Anderson (2000), Discontinuous Plane Rotations and the Symmetric Eigenvalue Problem. LAPACK Working Note 150, University of Tennessee, UT-CS-00-454, December 4, 2000.
|
inline |
Makes *this
as a Jacobi rotation J
such that applying J on both the right and left sides of the 2x2 selfadjoint matrix
Example:
Output:
Here is the matrix m: -1.65 0.871 0.871 -0.397 Here is the matrix J' * m * J: -2.09 0 0 0.0494
bool Eigen::JacobiRotation< Scalar >::makeJacobi | ( | const RealScalar & | x, |
const Scalar & | y, | ||
const RealScalar & | z ) |
Makes *this
as a Jacobi rotation J such that applying J on both the right and left sides of the selfadjoint 2x2 matrix
|
inline |
Concatenates two planar rotation
|
inline |
Returns the transposed transformation