Eigen  3.4.90 (git rev 67eeba6e720c5745abc77ae6c92ce0a44aa7b7ae)
DiagonalProduct.h
1 // This file is part of Eigen, a lightweight C++ template library
2 // for linear algebra.
3 //
4 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr>
5 // Copyright (C) 2007-2009 Benoit Jacob <jacob.benoit.1@gmail.com>
6 //
7 // This Source Code Form is subject to the terms of the Mozilla
8 // Public License v. 2.0. If a copy of the MPL was not distributed
9 // with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
10 
11 #ifndef EIGEN_DIAGONALPRODUCT_H
12 #define EIGEN_DIAGONALPRODUCT_H
13 
14 #include "./InternalHeaderCheck.h"
15 
16 namespace Eigen {
17 
20 template<typename Derived>
21 template<typename DiagonalDerived>
22 EIGEN_DEVICE_FUNC inline const Product<Derived, DiagonalDerived, LazyProduct>
23 MatrixBase<Derived>::operator*(const DiagonalBase<DiagonalDerived> &a_diagonal) const
24 {
25  return Product<Derived, DiagonalDerived, LazyProduct>(derived(),a_diagonal.derived());
26 }
27 
28 } // end namespace Eigen
29 
30 #endif // EIGEN_DIAGONALPRODUCT_H
const Product< Derived, OtherDerived > operator*(const MatrixBase< OtherDerived > &other) const
Definition: GeneralProduct.h:401
Expression of the product of two arbitrary matrices or vectors.
Definition: Product.h:77
Namespace containing all symbols from the Eigen library.
Definition: Core:139