Public Types | Static Public Member Functions | List of all members
eigen2_interface< real, SIZE > Class Template Reference

#include <eigen2_interface.hh>

Public Types

enum  { IsFixedSize = (SIZE!=Dynamic) }
 
typedef Eigen::Matrix< real, SIZE, SIZEgene_matrix
 
typedef Eigen::Matrix< real, SIZE, 1 > gene_vector
 
typedef real real_type
 
typedef std::vector< stl_vectorstl_matrix
 
typedef std::vector< realstl_vector
 

Static Public Member Functions

static void aat_product (const gene_matrix &A, gene_matrix &X, int N)
 
static void ata_product (const gene_matrix &A, gene_matrix &X, int N)
 
static void atv_product (gene_matrix &A, gene_vector &B, gene_vector &X, int N)
 
static void axpby (real a, const gene_vector &X, real b, gene_vector &Y, int N)
 
static void axpy (real coef, const gene_vector &X, gene_vector &Y, int N)
 
static void cholesky (const gene_matrix &X, gene_matrix &C, int N)
 
static void copy_matrix (const gene_matrix &source, gene_matrix &cible, int N)
 
static void copy_vector (const gene_vector &source, gene_vector &cible, int N)
 
static void free_matrix (gene_matrix &A, int N)
 
static void free_vector (gene_vector &B)
 
static void hessenberg (const gene_matrix &X, gene_matrix &C, int N)
 
static void lu_decomp (const gene_matrix &X, gene_matrix &C, int N)
 
static BTL_DONT_INLINE void matrix_from_stl (gene_matrix &A, stl_matrix &A_stl)
 
static void matrix_matrix_product (const gene_matrix &A, const gene_matrix &B, gene_matrix &X, int N)
 
static BTL_DONT_INLINE void matrix_to_stl (gene_matrix &A, stl_matrix &A_stl)
 
static void matrix_vector_product (const gene_matrix &A, const gene_vector &B, gene_vector &X, int N)
 
static std::string name (void)
 
static void transposed_matrix_matrix_product (const gene_matrix &A, const gene_matrix &B, gene_matrix &X, int N)
 
static void tridiagonalization (const gene_matrix &X, gene_matrix &C, int N)
 
static void trisolve_lower (const gene_matrix &L, const gene_vector &B, gene_vector &X, int N)
 
static void trisolve_lower_matrix (const gene_matrix &L, const gene_matrix &B, gene_matrix &X, int N)
 
static BTL_DONT_INLINE void vector_from_stl (gene_vector &B, stl_vector &B_stl)
 
static BTL_DONT_INLINE void vector_to_stl (gene_vector &B, stl_vector &B_stl)
 

Detailed Description

template<class real, int SIZE = Dynamic>
class eigen2_interface< real, SIZE >

Definition at line 31 of file eigen2_interface.hh.

Member Typedef Documentation

template<class real , int SIZE = Dynamic>
typedef Eigen::Matrix<real,SIZE,SIZE> eigen2_interface< real, SIZE >::gene_matrix

Definition at line 43 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
typedef Eigen::Matrix<real,SIZE,1> eigen2_interface< real, SIZE >::gene_vector

Definition at line 44 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
typedef real eigen2_interface< real, SIZE >::real_type

Definition at line 38 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
typedef std::vector<stl_vector> eigen2_interface< real, SIZE >::stl_matrix

Definition at line 41 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
typedef std::vector<real> eigen2_interface< real, SIZE >::stl_vector

Definition at line 40 of file eigen2_interface.hh.

Member Enumeration Documentation

template<class real , int SIZE = Dynamic>
anonymous enum
Enumerator
IsFixedSize 

Definition at line 36 of file eigen2_interface.hh.

Member Function Documentation

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::aat_product ( const gene_matrix A,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 108 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::ata_product ( const gene_matrix A,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 104 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::atv_product ( gene_matrix A,
gene_vector B,
gene_vector X,
int  N 
)
inlinestatic

Definition at line 116 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::axpby ( real  a,
const gene_vector X,
real  b,
gene_vector Y,
int  N 
)
inlinestatic

Definition at line 124 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::axpy ( real  coef,
const gene_vector X,
gene_vector Y,
int  N 
)
inlinestatic

Definition at line 120 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::cholesky ( const gene_matrix X,
gene_matrix C,
int  N 
)
inlinestatic

Definition at line 144 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::copy_matrix ( const gene_matrix source,
gene_matrix cible,
int  N 
)
inlinestatic

Definition at line 128 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::copy_vector ( const gene_vector source,
gene_vector cible,
int  N 
)
inlinestatic

Definition at line 132 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::free_matrix ( gene_matrix A,
int  N 
)
inlinestatic

Definition at line 57 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::free_vector ( gene_vector B)
inlinestatic

Definition at line 59 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::hessenberg ( const gene_matrix X,
gene_matrix C,
int  N 
)
inlinestatic

Definition at line 160 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::lu_decomp ( const gene_matrix X,
gene_matrix C,
int  N 
)
inlinestatic

Definition at line 151 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static BTL_DONT_INLINE void eigen2_interface< real, SIZE >::matrix_from_stl ( gene_matrix A,
stl_matrix A_stl 
)
inlinestatic

Definition at line 61 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::matrix_matrix_product ( const gene_matrix A,
const gene_matrix B,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 96 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static BTL_DONT_INLINE void eigen2_interface< real, SIZE >::matrix_to_stl ( gene_matrix A,
stl_matrix A_stl 
)
inlinestatic

Definition at line 85 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::matrix_vector_product ( const gene_matrix A,
const gene_vector B,
gene_vector X,
int  N 
)
inlinestatic

Definition at line 112 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static std::string eigen2_interface< real, SIZE >::name ( void  )
inlinestatic

Definition at line 46 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::transposed_matrix_matrix_product ( const gene_matrix A,
const gene_matrix B,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 100 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::tridiagonalization ( const gene_matrix X,
gene_matrix C,
int  N 
)
inlinestatic

Definition at line 156 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::trisolve_lower ( const gene_matrix L,
const gene_vector B,
gene_vector X,
int  N 
)
inlinestatic

Definition at line 136 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static void eigen2_interface< real, SIZE >::trisolve_lower_matrix ( const gene_matrix L,
const gene_matrix B,
gene_matrix X,
int  N 
)
inlinestatic

Definition at line 140 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static BTL_DONT_INLINE void eigen2_interface< real, SIZE >::vector_from_stl ( gene_vector B,
stl_vector B_stl 
)
inlinestatic

Definition at line 71 of file eigen2_interface.hh.

template<class real , int SIZE = Dynamic>
static BTL_DONT_INLINE void eigen2_interface< real, SIZE >::vector_to_stl ( gene_vector B,
stl_vector B_stl 
)
inlinestatic

Definition at line 79 of file eigen2_interface.hh.


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


gtsam
Author(s):
autogenerated on Sat May 8 2021 02:51:47