Warning, file /include/eigen3/Eigen/src/Core/DiagonalProduct.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef EIGEN_DIAGONALPRODUCT_H
0012 #define EIGEN_DIAGONALPRODUCT_H
0013
0014 namespace Eigen {
0015
0016
0017
0018 template<typename Derived>
0019 template<typename DiagonalDerived>
0020 EIGEN_DEVICE_FUNC inline const Product<Derived, DiagonalDerived, LazyProduct>
0021 MatrixBase<Derived>::operator*(const DiagonalBase<DiagonalDerived> &a_diagonal) const
0022 {
0023 return Product<Derived, DiagonalDerived, LazyProduct>(derived(),a_diagonal.derived());
0024 }
0025
0026 }
0027
0028 #endif