Go to the documentation of this file.
16 #ifndef EIGEN_SVDBASE_H
17 #define EIGEN_SVDBASE_H
47 template<
typename Derived>
71 Derived&
derived() {
return *
static_cast<Derived*
>(
this); }
72 const Derived&
derived()
const {
return *
static_cast<const Derived*
>(
this); }
206 template<
typename Rhs>
215 #ifndef EIGEN_PARSED_BY_DOXYGEN
216 template<
typename RhsType,
typename DstType>
218 void _solve_impl(
const RhsType &rhs, DstType &dst)
const;
258 #ifndef EIGEN_PARSED_BY_DOXYGEN
259 template<
typename Derived>
260 template<
typename RhsType,
typename DstType>
269 Index l_rank = rank();
270 tmp.noalias() = m_matrixU.leftCols(l_rank).adjoint() * rhs;
271 tmp = m_singularValues.head(l_rank).asDiagonal().inverse() * tmp;
272 dst = m_matrixV.leftCols(l_rank) * tmp;
276 template<
typename MatrixType>
284 computationOptions == m_computationOptions)
291 m_isInitialized =
false;
292 m_isAllocated =
true;
293 m_computationOptions = computationOptions;
294 m_computeFullU = (computationOptions &
ComputeFullU) != 0;
295 m_computeThinU = (computationOptions &
ComputeThinU) != 0;
296 m_computeFullV = (computationOptions &
ComputeFullV) != 0;
297 m_computeThinV = (computationOptions &
ComputeThinV) != 0;
298 eigen_assert(!(m_computeFullU && m_computeThinU) &&
"SVDBase: you can't ask for both full and thin U");
299 eigen_assert(!(m_computeFullV && m_computeThinV) &&
"SVDBase: you can't ask for both full and thin V");
301 "SVDBase: thin U and V are only available when your matrix has a dynamic number of columns.");
303 m_diagSize = (
std::min)(m_rows, m_cols);
304 m_singularValues.resize(m_diagSize);
306 m_matrixU.resize(m_rows, m_computeFullU ? m_rows : m_computeThinU ? m_diagSize : 0);
308 m_matrixV.resize(m_cols, m_computeFullV ? m_cols : m_computeThinV ? m_diagSize : 0);
315 #endif // EIGEN_SVDBASE_H
const Solve< Derived, Rhs > solve(const MatrixBase< Rhs > &b) const
Base class of SVD algorithms.
const SingularValuesType & singularValues() const
SingularValuesType m_singularValues
RealScalar threshold() const
internal::plain_diag_type< MatrixType, RealScalar >::type SingularValuesType
Index m_nonzeroSingularValues
@ MaxDiagSizeAtCompileTime
Derived & setThreshold(const RealScalar &threshold)
Derived & setThreshold(Default_t)
Index nonzeroSingularValues() const
EIGEN_DEVICE_FUNC const EIGEN_STRONG_INLINE AbsReturnType abs() const
const MatrixUType & matrixU() const
#define EIGEN_SIZE_MIN_PREFER_DYNAMIC(a, b)
const MatrixVType & matrixV() const
internal::traits< Derived >::MatrixType MatrixType
bool allocate(Index rows, Index cols, unsigned int computationOptions)
EIGEN_DEVICE_FUNC void _solve_impl(const RhsType &rhs, DstType &dst) const
Pseudo expression representing a solving operation.
MatrixType::Scalar Scalar
SVDBase()
Default Constructor.
bool m_usePrescribedThreshold
const Derived & derived() const
MatrixType::StorageIndex StorageIndex
unsigned int m_computationOptions
Matrix< Scalar, ColsAtCompileTime, ColsAtCompileTime, MatrixOptions, MaxColsAtCompileTime, MaxColsAtCompileTime > MatrixVType
Base class for all dense matrices, vectors, and expressions.
#define EIGEN_IMPLIES(a, b)
Matrix< Scalar, RowsAtCompileTime, RowsAtCompileTime, MatrixOptions, MaxRowsAtCompileTime, MaxRowsAtCompileTime > MatrixUType
static void check_template_parameters()
NumTraits< typename MatrixType::Scalar >::Real RealScalar
RealScalar m_prescribedThreshold
Holds information about the various numeric (i.e. scalar) types allowed by Eigen.
#define EIGEN_SIZE_MIN_PREFER_FIXED(a, b)
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
#define EIGEN_STATIC_ASSERT_NON_INTEGER(TYPE)
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:06:31