trmv_lo.cpp File Reference
#include "gemv_common.h"

Functions

EIGEN_DONT_INLINE void trmv (const Mat &A, const Vec &B, Vec &C)
 
int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int argc  ,
char **  argv 
)
5 { return main_gemv(argc, argv, trmv); }
int main_gemv(int argc, char **argv, Func &f)
Definition: gemv_common.h:48
EIGEN_DONT_INLINE void trmv(const Mat &A, const Vec &B, Vec &C)
Definition: trmv_lo.cpp:3

References main_gemv(), and trmv().

◆ trmv()

EIGEN_DONT_INLINE void trmv ( const Mat A,
const Vec B,
Vec C 
)
3 { C.noalias() += A.triangularView<Lower>() * B; }
The matrix class, also used for vectors and row-vectors.
Definition: Eigen/Eigen/src/Core/Matrix.h:186
Definition: matrices.h:74
@ Lower
Definition: Constants.h:211

References Eigen::Lower.

Referenced by main().