SparseSymMatProd.h
Go to the documentation of this file.
1 // Copyright (C) 2016-2025 Yixuan Qiu <yixuan.qiu@cos.name>
2 //
3 // This Source Code Form is subject to the terms of the Mozilla
4 // Public License v. 2.0. If a copy of the MPL was not distributed
5 // with this file, You can obtain one at https://mozilla.org/MPL/2.0/.
6 
7 #ifndef SPECTRA_SPARSE_SYM_MAT_PROD_H
8 #define SPECTRA_SPARSE_SYM_MAT_PROD_H
9 
10 #include <Eigen/Core>
11 #include <Eigen/SparseCore>
12 
13 namespace Spectra {
14 
30 template <typename Scalar_, int Uplo = Eigen::Lower, int Flags = Eigen::ColMajor, typename StorageIndex = int>
32 {
33 public:
37  using Scalar = Scalar_;
38 
39 private:
47 
49 
50 public:
58  template <typename Derived>
60  m_mat(mat)
61  {
62  static_assert(
63  static_cast<int>(Derived::PlainObject::IsRowMajor) == static_cast<int>(SparseMatrix::IsRowMajor),
64  "SparseSymMatProd: the \"Flags\" template parameter does not match the input matrix (Eigen::ColMajor/Eigen::RowMajor)");
65  }
66 
70  Index rows() const { return m_mat.rows(); }
74  Index cols() const { return m_mat.cols(); }
75 
82  // y_out = A * x_in
83  void perform_op(const Scalar* x_in, Scalar* y_out) const
84  {
85  MapConstVec x(x_in, m_mat.cols());
86  MapVec y(y_out, m_mat.rows());
87  y.noalias() = m_mat.template selfadjointView<Uplo>() * x;
88  }
89 
94  {
95  return m_mat.template selfadjointView<Uplo>() * mat_in;
96  }
97 
102  {
103  return m_mat.coeff(i, j);
104  }
105 };
106 } // namespace Spectra
107 
108 #endif // SPECTRA_SPARSE_SYM_MAT_PROD_H
Eigen::SparseMatrix
A versatible sparse matrix representation.
Definition: SparseMatrix.h:96
x
set noclip points set clip one set noclip two set bar set border lt lw set xdata set ydata set zdata set x2data set y2data set boxwidth set dummy x
Definition: gnuplot_common_settings.hh:12
Spectra::SparseSymMatProd::cols
Index cols() const
Definition: SparseSymMatProd.h:74
Spectra::SparseSymMatProd
Definition: SparseSymMatProd.h:31
mat
MatrixXf mat
Definition: Tutorial_AdvancedInitialization_CommaTemporary.cpp:1
j
std::ptrdiff_t j
Definition: tut_arithmetic_redux_minmax.cpp:2
Spectra::SparseSymMatProd::m_mat
ConstGenericSparseMatrix m_mat
Definition: SparseSymMatProd.h:48
Spectra::SparseSymMatProd::operator()
Scalar operator()(Index i, Index j) const
Definition: SparseSymMatProd.h:101
Spectra::SparseSymMatProd< double >::Scalar
double Scalar
Definition: SparseSymMatProd.h:37
Spectra::SparseSymMatProd::rows
Index rows() const
Definition: SparseSymMatProd.h:70
Eigen::Map
A matrix or vector expression mapping an existing array of data.
Definition: Map.h:94
y
Scalar * y
Definition: level1_cplx_impl.h:124
Eigen::Ref< const SparseMatrix >
Spectra
Definition: LOBPCGSolver.h:19
Eigen::SparseMatrixBase
Base class of any sparse matrices or sparse expressions.
Definition: ForwardDeclarations.h:301
Spectra::SparseSymMatProd::perform_op
void perform_op(const Scalar *x_in, Scalar *y_out) const
Definition: SparseSymMatProd.h:83
Spectra::SparseSymMatProd::SparseSymMatProd
SparseSymMatProd(const Eigen::SparseMatrixBase< Derived > &mat)
Definition: SparseSymMatProd.h:59
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 >
Spectra::SparseSymMatProd< double >::Index
Eigen::Index Index
Definition: SparseSymMatProd.h:40
Eigen::SparseCompressedBase< SparseMatrix< _Scalar, _Options, _StorageIndex > >::IsRowMajor
@ IsRowMajor
Definition: SparseMatrixBase.h:100
Spectra::SparseSymMatProd::operator*
Matrix operator*(const Eigen::Ref< const Matrix > &mat_in) const
Definition: SparseSymMatProd.h:93
i
int i
Definition: BiCGSTAB_step_by_step.cpp:9
Eigen::Index
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition: Meta.h:74


gtsam
Author(s):
autogenerated on Fri Mar 28 2025 03:04:08