Public Types | Public Member Functions | Private Types | Private Attributes | List of all members
Spectra::DenseGenMatProd< Scalar_, Flags > Class Template Reference

#include <DenseGenMatProd.h>

Public Types

using Scalar = Scalar_
 

Public Member Functions

Index cols () const
 
template<typename Derived >
 DenseGenMatProd (const Eigen::MatrixBase< Derived > &mat)
 
Scalar operator() (Index i, Index j) const
 
Matrix operator* (const Eigen::Ref< const Matrix > &mat_in) const
 
void perform_op (const Scalar *x_in, Scalar *y_out) const
 
Index rows () const
 

Private Types

using ConstGenericMatrix = const Eigen::Ref< const Matrix >
 
using Index = Eigen::Index
 
using MapConstVec = Eigen::Map< const Vector >
 
using MapVec = Eigen::Map< Vector >
 
using Matrix = Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic, Flags >
 
using Vector = Eigen::Matrix< Scalar, Eigen::Dynamic, 1 >
 

Private Attributes

ConstGenericMatrix m_mat
 

Detailed Description

template<typename Scalar_, int Flags = Eigen::ColMajor>
class Spectra::DenseGenMatProd< Scalar_, Flags >

This class defines the matrix-vector multiplication operation on a general real matrix $A$, i.e., calculating $y=Ax$ for any vector $x$. It is mainly used in the GenEigsSolver and SymEigsSolver eigen solvers.

Template Parameters
Scalar_The element type of the matrix, for example, float, double, and long double.
FlagsEither Eigen::ColMajor or Eigen::RowMajor, indicating the storage format of the input matrix.

Definition at line 34 of file DenseGenMatProd.h.

Member Typedef Documentation

◆ ConstGenericMatrix

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::ConstGenericMatrix = const Eigen::Ref<const Matrix>
private

Definition at line 48 of file DenseGenMatProd.h.

◆ Index

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::Index = Eigen::Index
private

Definition at line 43 of file DenseGenMatProd.h.

◆ MapConstVec

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::MapConstVec = Eigen::Map<const Vector>
private

Definition at line 46 of file DenseGenMatProd.h.

◆ MapVec

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::MapVec = Eigen::Map<Vector>
private

Definition at line 47 of file DenseGenMatProd.h.

◆ Matrix

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::Matrix = Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Flags>
private

Definition at line 44 of file DenseGenMatProd.h.

◆ Scalar

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::Scalar = Scalar_

Element type of the matrix.

Definition at line 40 of file DenseGenMatProd.h.

◆ Vector

template<typename Scalar_ , int Flags = Eigen::ColMajor>
using Spectra::DenseGenMatProd< Scalar_, Flags >::Vector = Eigen::Matrix<Scalar, Eigen::Dynamic, 1>
private

Definition at line 45 of file DenseGenMatProd.h.

Constructor & Destructor Documentation

◆ DenseGenMatProd()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
template<typename Derived >
Spectra::DenseGenMatProd< Scalar_, Flags >::DenseGenMatProd ( const Eigen::MatrixBase< Derived > &  mat)
inline

Constructor to create the matrix operation object.

Parameters
matAn Eigen matrix object, whose type can be Eigen::Matrix<Scalar, ...> (e.g. Eigen::MatrixXd and Eigen::MatrixXf), or its mapped version (e.g. Eigen::Map<Eigen::MatrixXd>).

Definition at line 62 of file DenseGenMatProd.h.

Member Function Documentation

◆ cols()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
Index Spectra::DenseGenMatProd< Scalar_, Flags >::cols ( ) const
inline

Return the number of columns of the underlying matrix.

Definition at line 77 of file DenseGenMatProd.h.

◆ operator()()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
Scalar Spectra::DenseGenMatProd< Scalar_, Flags >::operator() ( Index  i,
Index  j 
) const
inline

Extract (i,j) element of the underlying matrix.

Definition at line 104 of file DenseGenMatProd.h.

◆ operator*()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
Matrix Spectra::DenseGenMatProd< Scalar_, Flags >::operator* ( const Eigen::Ref< const Matrix > &  mat_in) const
inline

Perform the matrix-matrix multiplication operation $y=Ax$.

Definition at line 96 of file DenseGenMatProd.h.

◆ perform_op()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
void Spectra::DenseGenMatProd< Scalar_, Flags >::perform_op ( const Scalar x_in,
Scalar y_out 
) const
inline

Perform the matrix-vector multiplication operation $y=Ax$.

Parameters
x_inPointer to the $x$ vector.
y_outPointer to the $y$ vector.

Definition at line 86 of file DenseGenMatProd.h.

◆ rows()

template<typename Scalar_ , int Flags = Eigen::ColMajor>
Index Spectra::DenseGenMatProd< Scalar_, Flags >::rows ( ) const
inline

Return the number of rows of the underlying matrix.

Definition at line 73 of file DenseGenMatProd.h.

Member Data Documentation

◆ m_mat

template<typename Scalar_ , int Flags = Eigen::ColMajor>
ConstGenericMatrix Spectra::DenseGenMatProd< Scalar_, Flags >::m_mat
private

Definition at line 50 of file DenseGenMatProd.h.


The documentation for this class was generated from the following file:


gtsam
Author(s):
autogenerated on Sun Feb 16 2025 04:15:25