• Home
  • Raw
  • Download

Lines Matching full:scalar

20 …G_INLINE const CwiseBinaryOp<internal::scalar_quotient_op<Scalar,typename OtherDerived::Scalar>, c…
23 …return CwiseBinaryOp<internal::scalar_quotient_op<Scalar,typename OtherDerived::Scalar>, const Der…
35 /** \returns an expression of the coefficient-wise min of \c *this and scalar \a other in EIGEN_MAKE_CWISE_BINARY_OP()
40 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_min_op<Scalar,Scalar>, const Derived, in EIGEN_MAKE_CWISE_BINARY_OP()
41 … const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > in EIGEN_MAKE_CWISE_BINARY_OP()
47 (const Scalar &other) const in EIGEN_MAKE_CWISE_BINARY_OP()
61 /** \returns an expression of the coefficient-wise max of \c *this and scalar \a other in EIGEN_MAKE_CWISE_BINARY_OP()
66 EIGEN_STRONG_INLINE const CwiseBinaryOp<internal::scalar_max_op<Scalar,Scalar>, const Derived, in EIGEN_MAKE_CWISE_BINARY_OP()
67 … const CwiseNullaryOp<internal::scalar_constant_op<Scalar>, PlainObject> > in EIGEN_MAKE_CWISE_BINARY_OP()
73 (const Scalar &other) const in EIGEN_MAKE_CWISE_BINARY_OP()
92 …* \tparam T is the scalar type of \a exponent. It must be compatible with the scalar type of the g…
103 const CwiseBinaryOp<internal::scalar_pow_op<Scalar,T>,Derived,Constant<T> > pow(const T& exponent) …
110 …STRONG_INLINE const CwiseBinaryOp<internal::scalar_cmp_op<Scalar, typename OtherDerived::Scalar, i…
113 …return CwiseBinaryOp<internal::scalar_cmp_op<Scalar, typename OtherDerived::Scalar, internal::cmp_…
115 …al::scalar_cmp_op<Scalar,Scalar, internal::cmp_ ## COMPARATOR>, const Derived, const CwiseNullaryO…
116 …<internal::scalar_cmp_op<Scalar,Scalar, internal::cmp_ ## COMPARATOR>, const CwiseNullaryOp<intern…
118 OP(const Scalar& s) const { \
122 OP(const Scalar& s, const Derived& d) { \
128 …E const CwiseBinaryOp<internal::scalar_cmp_op<typename OtherDerived::Scalar, Scalar, internal::cmp…
131 …return CwiseBinaryOp<internal::scalar_cmp_op<typename OtherDerived::Scalar, Scalar, internal::cmp_…
135 OP(const Scalar& s) const { \
139 OP(const Scalar& s, const Derived& d) { \
213 // scalar addition
217 /** \returns an expression of \c *this with each coeff incremented by the constant \a scalar
219 …* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the giv…
227 const CwiseBinaryOp<internal::scalar_sum_op<Scalar,T>,Derived,Constant<T> > operator+(const T& scal…
228 /** \returns an expression of \a expr with each coeff incremented by the constant \a scalar
230 …* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the giv…
233 const CwiseBinaryOp<internal::scalar_sum_op<T,Scalar>,Constant<T>,Derived> operator+(const T& scala…
239 /** \returns an expression of \c *this with each coeff decremented by the constant \a scalar
241 …* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the giv…
249 …st CwiseBinaryOp<internal::scalar_difference_op<Scalar,T>,Derived,Constant<T> > operator-(const T&…
250 /** \returns an expression of the constant matrix of value \a scalar decremented by the coefficient…
252 …* \tparam T is the scalar type of \a scalar. It must be compatible with the scalar type of the giv…
255 …t CwiseBinaryOp<internal::scalar_difference_op<T,Scalar>,Constant<T>,Derived> operator-(const T& s…
263 * \brief Component-wise division of the scalar \a s by array elements of \a a.
265 …* \tparam Scalar is the scalar type of \a x. It must be compatible with the scalar type of the giv…
268 inline const CwiseBinaryOp<internal::scalar_quotient_op<T,Scalar>,Constant<T>,Derived>
286 …EN_STATIC_ASSERT((internal::is_same<bool,Scalar>::value && internal::is_same<bool,typename OtherDe…
304 inline const CwiseBinaryOp<internal::scalar_polygamma_op<Scalar>, const DerivedN, const Derived>
307 …return CwiseBinaryOp<internal::scalar_polygamma_op<Scalar>, const DerivedN, const Derived>(n.deriv…
320 …* \note This function supports only float and double scalar types. To support other scalar types, …
321 * to provide implementations of zeta(T,T) for any scalar type T to be supported.
328 inline const CwiseBinaryOp<internal::scalar_zeta_op<Scalar>, const Derived, const DerivedQ>
331 …return CwiseBinaryOp<internal::scalar_zeta_op<Scalar>, const Derived, const DerivedQ>(this->derive… in zeta()