Home | History | Annotate | Download | only in plugins

Lines Matching refs:Scalar

17 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>
20 return CwiseBinaryOp<internal::scalar_quotient_op<Scalar>, const Derived, const OtherDerived>(derived(), other.derived());
32 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other
36 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_min_op<Scalar>, const Derived,
37 const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> >
43 (const Scalar &other) const
57 /** \returns an expression of the coefficient-wise max of \c *this and scalar \a other
61 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_max_op<Scalar>, const Derived,
62 const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> >
68 (const Scalar &other) const
137 // scalar addition
139 /** \returns an expression of \c *this with each coeff incremented by the constant \a scalar
146 inline const CwiseUnaryOp<internal::scalar_add_op<Scalar>, const Derived>
147 operator+(const Scalar& scalar) const
149 return CwiseUnaryOp<internal::scalar_add_op<Scalar>, const Derived>(derived(), internal::scalar_add_op<Scalar>(scalar));
152 friend inline const CwiseUnaryOp<internal::scalar_add_op<Scalar>, const Derived>
153 operator+(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other)
155 return other + scalar;
158 /** \returns an expression of \c *this with each coeff decremented by the constant \a scalar
165 inline const CwiseUnaryOp<internal::scalar_add_op<Scalar>, const Derived>
166 operator-(const Scalar& scalar) const
168 return *this + (-scalar);
171 friend inline const CwiseUnaryOp<internal::scalar_add_op<Scalar>, const CwiseUnaryOp<internal::scalar_opposite_op<Scalar>, const Derived> >
172 operator-(const Scalar& scalar,const EIGEN_CURRENT_STORAGE_BASE_CLASS<Derived>& other)
174 return (-other) + scalar;
190 EIGEN_STATIC_ASSERT((internal::is_same<bool,Scalar>::value && internal::is_same<bool,typename OtherDerived::Scalar>::value),
208 EIGEN_STATIC_ASSERT((internal::is_same<bool,Scalar>::value && internal::is_same<bool,typename OtherDerived::Scalar>::value),