CommonCwiseUnaryOps.h
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2008-2009 Gael Guennebaud <gael.guennebaud@inria.fr>
5// Copyright (C) 2006-2008 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// This file is a base class plugin containing common coefficient wise functions.
12
13#ifndef EIGEN_PARSED_BY_DOXYGEN
14
16typedef CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const Derived> ScalarMultipleReturnType;
18typedef CwiseUnaryOp<internal::scalar_quotient1_op<Scalar>, const Derived> ScalarQuotient1ReturnType;
20typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
21 const CwiseUnaryOp<internal::scalar_conjugate_op<Scalar>, const Derived>,
22 const Derived&
23 >::type ConjugateReturnType;
25typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
26 const CwiseUnaryOp<internal::scalar_real_op<Scalar>, const Derived>,
27 const Derived&
28 >::type RealReturnType;
30typedef typename internal::conditional<NumTraits<Scalar>::IsComplex,
31 CwiseUnaryView<internal::scalar_real_ref_op<Scalar>, Derived>,
32 Derived&
33 >::type NonConstRealReturnType;
35typedef CwiseUnaryOp<internal::scalar_imag_op<Scalar>, const Derived> ImagReturnType;
37typedef CwiseUnaryView<internal::scalar_imag_ref_op<Scalar>, Derived> NonConstImagReturnType;
38
39#endif // not EIGEN_PARSED_BY_DOXYGEN
40
43inline const CwiseUnaryOp<internal::scalar_opposite_op<typename internal::traits<Derived>::Scalar>, const Derived>
44operator-() const { return derived(); }
45
46
48inline const ScalarMultipleReturnType
49operator*(const Scalar& scalar) const
50{
51 return CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const Derived>
52 (derived(), internal::scalar_multiple_op<Scalar>(scalar));
53}
54
55#ifdef EIGEN_PARSED_BY_DOXYGEN
56const ScalarMultipleReturnType operator*(const RealScalar& scalar) const;
57#endif
58
60inline const CwiseUnaryOp<internal::scalar_quotient1_op<typename internal::traits<Derived>::Scalar>, const Derived>
61operator/(const Scalar& scalar) const
62{
63 return CwiseUnaryOp<internal::scalar_quotient1_op<Scalar>, const Derived>
64 (derived(), internal::scalar_quotient1_op<Scalar>(scalar));
65}
66
68inline const CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived>
69operator*(const std::complex<Scalar>& scalar) const
70{
71 return CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived>
72 (*static_cast<const Derived*>(this), internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >(scalar));
73}
74
75inline friend const ScalarMultipleReturnType
76operator*(const Scalar& scalar, const StorageBaseType& matrix)
77{ return matrix*scalar; }
78
79inline friend const CwiseUnaryOp<internal::scalar_multiple2_op<Scalar,std::complex<Scalar> >, const Derived>
80operator*(const std::complex<Scalar>& scalar, const StorageBaseType& matrix)
81{ return matrix*scalar; }
82
90template<typename NewType>
91typename internal::cast_return_type<Derived,const CwiseUnaryOp<internal::scalar_cast_op<typename internal::traits<Derived>::Scalar, NewType>, const Derived> >::type
92cast() const
93{
94 return derived();
95}
96
100inline ConjugateReturnType
101conjugate() const
102{
103 return ConjugateReturnType(derived());
104}
105
109inline RealReturnType
110real() const { return derived(); }
111
115inline const ImagReturnType
116imag() const { return derived(); }
117
137template<typename CustomUnaryOp>
138inline const CwiseUnaryOp<CustomUnaryOp, const Derived>
139unaryExpr(const CustomUnaryOp& func = CustomUnaryOp()) const
140{
141 return CwiseUnaryOp<CustomUnaryOp, const Derived>(derived(), func);
142}
143
155template<typename CustomViewOp>
156inline const CwiseUnaryView<CustomViewOp, const Derived>
157unaryViewExpr(const CustomViewOp& func = CustomViewOp()) const
158{
159 return CwiseUnaryView<CustomViewOp, const Derived>(derived(), func);
160}
161
165inline NonConstRealReturnType
166real() { return derived(); }
167
171inline NonConstImagReturnType
172imag() { return derived(); }