10#ifndef EIGEN_SELFCWISEBINARYOP_H
11#define EIGEN_SELFCWISEBINARYOP_H
14#include "./InternalHeaderCheck.h"
18template <
typename Derived>
19EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator*=(
const Scalar& other) {
20 using ConstantExpr =
typename internal::plain_constant_type<Derived, Scalar>::type;
21 using Op = internal::mul_assign_op<Scalar>;
22 internal::call_assignment(derived(), ConstantExpr(rows(), cols(), other), Op());
26template <
typename Derived>
27template <
bool Enable,
typename>
28EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator*=(
const RealScalar& other) {
33template <
typename Derived>
34EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator/=(
const Scalar& other) {
35 using ConstantExpr =
typename internal::plain_constant_type<Derived, Scalar>::type;
36 using Op = internal::div_assign_op<Scalar>;
37 internal::call_assignment(derived(), ConstantExpr(rows(), cols(), other), Op());
41template <
typename Derived>
42template <
bool Enable,
typename>
43EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived& DenseBase<Derived>::operator/=(
const RealScalar& other) {
Namespace containing all symbols from the Eigen library.
Definition B01_Experimental.dox:1