38 using Index = Eigen::Index;
39 using Vector = Eigen::Matrix<Scalar, Eigen::Dynamic, 1>;
40 using MapConstVec = Eigen::Map<const Vector>;
41 using MapVec = Eigen::Map<Vector>;
42 using Matrix = Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic>;
43 using SparseMatrix = Eigen::SparseMatrix<Scalar, Flags, StorageIndex>;
44 using ConstGenericSparseMatrix =
const Eigen::Ref<const SparseMatrix>;
46 ConstGenericSparseMatrix m_mat;
56 template <
typename Derived>
61 static_cast<int>(Derived::PlainObject::IsRowMajor) ==
static_cast<int>(SparseMatrix::IsRowMajor),
62 "SparseGenMatProd: the \"Flags\" template parameter does not match the input matrix (Eigen::ColMajor/Eigen::RowMajor)");
68 Index
rows()
const {
return m_mat.rows(); }
72 Index
cols()
const {
return m_mat.cols(); }
83 MapConstVec x(x_in, m_mat.cols());
84 MapVec y(y_out, m_mat.rows());
85 y.noalias() = m_mat * x;
91 Matrix
operator*(
const Eigen::Ref<const Matrix>& mat_in)
const
93 return m_mat * mat_in;
101 return m_mat.coeff(i, j);