Please, help us to better know about our user community by answering the following short survey: https://forms.gle/wpyrxWi18ox9Z5ae9
Eigen  3.4.0
Loading...
Searching...
No Matches
ArrayBase.h
1// This file is part of Eigen, a lightweight C++ template library
2// for linear algebra.
3//
4// Copyright (C) 2009 Gael Guennebaud <gael.guennebaud@inria.fr>
5//
6// This Source Code Form is subject to the terms of the Mozilla
7// Public License v. 2.0. If a copy of the MPL was not distributed
8// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
9
10#ifndef EIGEN_ARRAYBASE_H
11#define EIGEN_ARRAYBASE_H
12
13namespace Eigen {
14
15template<typename ExpressionType> class MatrixWrapper;
16
22 * An array is similar to a dense vector or matrix. While matrices are mathematical
23 * objects with well defined linear algebra operators, an array is just a collection
24 * of scalar values arranged in a one or two dimensionnal fashion. As the main consequence,
25 * all operations applied to an array are performed coefficient wise. Furthermore,
26 * arrays support scalar math functions of the c++ standard library (e.g., std::sin(x)), and convenient
27 * constructors allowing to easily write generic code working for both scalar values
28 * and arrays.
29 *
30 * This class is the base that is inherited by all array expression types.
31 *
32 * \tparam Derived is the derived type, e.g., an array or an expression type.
33 *
34 * This class can be extended with the help of the plugin mechanism described on the page
35 * \ref TopicCustomizing_Plugins by defining the preprocessor symbol \c EIGEN_ARRAYBASE_PLUGIN.
36 *
37 * \sa class MatrixBase, \ref TopicClassHierarchy
38 */
39template<typename Derived> class ArrayBase
40 : public DenseBase<Derived>
41{
42 public:
43#ifndef EIGEN_PARSED_BY_DOXYGEN
44 /** The base class for a given storage type. */
45 typedef ArrayBase StorageBaseType;
46
47 typedef ArrayBase Eigen_BaseClassForSpecializationOfGlobalMathFuncImpl;
48
49 typedef typename internal::traits<Derived>::StorageKind StorageKind;
50 typedef typename internal::traits<Derived>::Scalar Scalar;
51 typedef typename internal::packet_traits<Scalar>::type PacketScalar;
52 typedef typename NumTraits<Scalar>::Real RealScalar;
54 typedef DenseBase<Derived> Base;
55 using Base::RowsAtCompileTime;
56 using Base::ColsAtCompileTime;
57 using Base::SizeAtCompileTime;
58 using Base::MaxRowsAtCompileTime;
59 using Base::MaxColsAtCompileTime;
60 using Base::MaxSizeAtCompileTime;
61 using Base::IsVectorAtCompileTime;
62 using Base::Flags;
63
64 using Base::derived;
65 using Base::const_cast_derived;
66 using Base::rows;
67 using Base::cols;
68 using Base::size;
69 using Base::coeff;
70 using Base::coeffRef;
71 using Base::lazyAssign;
72 using Base::operator-;
73 using Base::operator=;
74 using Base::operator+=;
75 using Base::operator-=;
76 using Base::operator*=;
77 using Base::operator/=;
78
79 typedef typename Base::CoeffReturnType CoeffReturnType;
80
81#endif // not EIGEN_PARSED_BY_DOXYGEN
82
83#ifndef EIGEN_PARSED_BY_DOXYGEN
84 typedef typename Base::PlainObject PlainObject;
88#endif // not EIGEN_PARSED_BY_DOXYGEN
89
90#define EIGEN_CURRENT_STORAGE_BASE_CLASS Eigen::ArrayBase
91#define EIGEN_DOC_UNARY_ADDONS(X,Y)
92# include "../plugins/MatrixCwiseUnaryOps.h"
93# include "../plugins/ArrayCwiseUnaryOps.h"
94# include "../plugins/CommonCwiseBinaryOps.h"
95# include "../plugins/MatrixCwiseBinaryOps.h"
96# include "../plugins/ArrayCwiseBinaryOps.h"
97# ifdef EIGEN_ARRAYBASE_PLUGIN
98# include EIGEN_ARRAYBASE_PLUGIN
99# endif
100#undef EIGEN_CURRENT_STORAGE_BASE_CLASS
101#undef EIGEN_DOC_UNARY_ADDONS
102
104
105 */
106 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
107 Derived& operator=(const ArrayBase& other)
108 {
109 internal::call_assignment(derived(), other.derived());
110 return derived();
115 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
116 Derived& operator=(const Scalar &value)
117 { Base::setConstant(value); return derived(); }
118
119 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
120 Derived& operator+=(const Scalar& scalar);
121 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
122 Derived& operator-=(const Scalar& scalar);
123
124 template<typename OtherDerived>
125 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
126 Derived& operator+=(const ArrayBase<OtherDerived>& other);
127 template<typename OtherDerived>
128 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
129 Derived& operator-=(const ArrayBase<OtherDerived>& other);
131 template<typename OtherDerived>
132 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
133 Derived& operator*=(const ArrayBase<OtherDerived>& other);
134
135 template<typename OtherDerived>
136 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE
137 Derived& operator/=(const ArrayBase<OtherDerived>& other);
138
139 public:
140 EIGEN_DEVICE_FUNC
141 ArrayBase<Derived>& array() { return *this; }
142 EIGEN_DEVICE_FUNC
143 const ArrayBase<Derived>& array() const { return *this; }
144
147 EIGEN_DEVICE_FUNC
149 EIGEN_DEVICE_FUNC
151
152// template<typename Dest>
153// inline void evalTo(Dest& dst) const { dst = matrix(); }
154
155 protected:
156 EIGEN_DEFAULT_COPY_CONSTRUCTOR(ArrayBase)
157 EIGEN_DEFAULT_EMPTY_CONSTRUCTOR_AND_DESTRUCTOR(ArrayBase)
158
159 private:
160 explicit ArrayBase(Index);
161 ArrayBase(Index,Index);
162 template<typename OtherDerived> explicit ArrayBase(const ArrayBase<OtherDerived>&);
163 protected:
164 // mixing arrays and matrices is not legal
165 template<typename OtherDerived> Derived& operator+=(const MatrixBase<OtherDerived>& )
166 {EIGEN_STATIC_ASSERT(std::ptrdiff_t(sizeof(typename OtherDerived::Scalar))==-1,YOU_CANNOT_MIX_ARRAYS_AND_MATRICES); return *this;}
167 // mixing arrays and matrices is not legal
168 template<typename OtherDerived> Derived& operator-=(const MatrixBase<OtherDerived>& )
169 {EIGEN_STATIC_ASSERT(std::ptrdiff_t(sizeof(typename OtherDerived::Scalar))==-1,YOU_CANNOT_MIX_ARRAYS_AND_MATRICES); return *this;}
170};
175
176template<typename Derived>
177template<typename OtherDerived>
178EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived &
179ArrayBase<Derived>::operator-=(const ArrayBase<OtherDerived> &other)
180{
181 call_assignment(derived(), other.derived(), internal::sub_assign_op<Scalar,typename OtherDerived::Scalar>());
182 return derived();
183}
184
188 */
189template<typename Derived>
190template<typename OtherDerived>
191EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived &
192ArrayBase<Derived>::operator+=(const ArrayBase<OtherDerived>& other)
193{
194 call_assignment(derived(), other.derived(), internal::add_assign_op<Scalar,typename OtherDerived::Scalar>());
195 return derived();
196}
197
202template<typename Derived>
203template<typename OtherDerived>
204EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived &
205ArrayBase<Derived>::operator*=(const ArrayBase<OtherDerived>& other)
206{
207 call_assignment(derived(), other.derived(), internal::mul_assign_op<Scalar,typename OtherDerived::Scalar>());
208 return derived();
209}
210
215template<typename Derived>
216template<typename OtherDerived>
217EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived &
218ArrayBase<Derived>::operator/=(const ArrayBase<OtherDerived>& other)
219{
220 call_assignment(derived(), other.derived(), internal::div_assign_op<Scalar,typename OtherDerived::Scalar>());
221 return derived();
222}
223
224} // end namespace Eigen
225
226#endif // EIGEN_ARRAYBASE_H
Base class for all 1D and 2D array, and related expressions.
Definition ArrayBase.h:41
Derived & operator/=(const ArrayBase< OtherDerived > &other)
Definition ArrayBase.h:218
Derived & operator=(const ArrayBase &other)
Definition ArrayBase.h:107
MatrixWrapper< Derived > matrix()
Definition ArrayBase.h:148
Derived & operator*=(const ArrayBase< OtherDerived > &other)
Definition ArrayBase.h:205
Derived & operator+=(const ArrayBase< OtherDerived > &other)
Definition ArrayBase.h:192
Generic expression of a matrix where all coefficients are defined by a functor.
Definition CwiseNullaryOp.h:61
internal::traits< Derived >::Scalar Scalar
Definition DenseBase.h:66
CoeffReturnType value() const
Definition DenseBase.h:526
DenseBase()
Definition DenseBase.h:681
internal::conditional< internal::is_same< typenameinternal::traits< Derived >::XprKind, MatrixXpr >::value, PlainMatrix, PlainArray >::type PlainObject
The plain matrix or array type corresponding to this expression.
Definition DenseBase.h:210
Derived & derived()
Definition EigenBase.h:46
Base class for all dense matrices, vectors, and expressions.
Definition MatrixBase.h:50
Expression of an array as a mathematical vector or matrix.
Definition ArrayWrapper.h:141
Namespace containing all symbols from the Eigen library.
Definition Core:141
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:74