36template<
typename _Scalar,
int _Rows,
int _Cols,
int _Options,
int _MaxRows,
int _MaxCols>
37struct traits<
Array<_Scalar,
_Rows,
_Cols, _Options,
_MaxRows,
_MaxCols> > :
traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
44template<
typename _Scalar,
int _Rows,
int _Cols,
int _Options,
int _MaxRows,
int _MaxCols>
46 :
public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
51 EIGEN_DENSE_PUBLIC_INTERFACE(
Array)
53 enum { Options = _Options };
54 typedef typename Base::PlainObject PlainObject;
57 template <
typename Derived,
typename OtherDerived,
bool IsVector>
60 using Base::m_storage;
74 template<
typename OtherDerived>
105 template<
typename OtherDerived>
134 Base::_check_template_params();
135 EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
138#ifndef EIGEN_PARSED_BY_DOXYGEN
143 : Base(internal::constructor_without_unaligned_array_assert())
145 Base::_check_template_params();
146 EIGEN_INITIALIZE_COEFFS_IF_THAT_OPTION_IS_ENABLED
150#ifdef EIGEN_HAVE_RVALUE_REFERENCES
153 : Base(
std::move(other))
155 Base::_check_template_params();
156 if (RowsAtCompileTime!=Dynamic && ColsAtCompileTime!=Dynamic)
157 Base::_set_noalias(other);
167 #ifndef EIGEN_PARSED_BY_DOXYGEN
170 EIGEN_STRONG_INLINE
explicit Array(
const T& x)
172 Base::_check_template_params();
173 Base::template _init1<T>(x);
176 template<
typename T0,
typename T1>
178 EIGEN_STRONG_INLINE
Array(
const T0& val0,
const T1& val1)
180 Base::_check_template_params();
181 this->
template _init2<T0,T1>(val0, val1);
185 EIGEN_DEVICE_FUNC
explicit Array(
const Scalar *
data);
193 EIGEN_STRONG_INLINE
explicit Array(Index dim);
195 Array(
const Scalar& value);
201 Array(Index rows, Index cols);
203 Array(
const Scalar& val0,
const Scalar& val1);
208 EIGEN_STRONG_INLINE
Array(
const Scalar&
val0,
const Scalar& val1,
const Scalar& val2)
210 Base::_check_template_params();
211 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(
Array, 3)
212 m_storage.data()[0] =
val0;
213 m_storage.data()[1] = val1;
214 m_storage.data()[2] = val2;
218 EIGEN_STRONG_INLINE
Array(
const Scalar&
val0,
const Scalar& val1,
const Scalar& val2,
const Scalar& val3)
220 Base::_check_template_params();
221 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(
Array, 4)
222 m_storage.data()[0] =
val0;
223 m_storage.data()[1] = val1;
224 m_storage.data()[2] = val2;
225 m_storage.data()[3] = val3;
235 template<
typename OtherDerived>
238 :
Base(other.derived())
242 EIGEN_DEVICE_FUNC
inline Index outerStride()
const {
return this->innerSize(); }
244 #ifdef EIGEN_ARRAY_PLUGIN
245 #include EIGEN_ARRAY_PLUGIN
250 template<
typename MatrixType,
typename OtherDerived,
bool SwapPo
inters>
251 friend struct internal::matrix_swap_impl;
273#define EIGEN_MAKE_ARRAY_TYPEDEFS(Type, TypeSuffix, Size, SizeSuffix) \
275typedef Array<Type, Size, Size> Array##SizeSuffix##SizeSuffix##TypeSuffix; \
277typedef Array<Type, Size, 1> Array##SizeSuffix##TypeSuffix;
279#define EIGEN_MAKE_ARRAY_FIXED_TYPEDEFS(Type, TypeSuffix, Size) \
281typedef Array<Type, Size, Dynamic> Array##Size##X##TypeSuffix; \
283typedef Array<Type, Dynamic, Size> Array##X##Size##TypeSuffix;
285#define EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(Type, TypeSuffix) \
286EIGEN_MAKE_ARRAY_TYPEDEFS(Type, TypeSuffix, 2, 2) \
287EIGEN_MAKE_ARRAY_TYPEDEFS(Type, TypeSuffix, 3, 3) \
288EIGEN_MAKE_ARRAY_TYPEDEFS(Type, TypeSuffix, 4, 4) \
289EIGEN_MAKE_ARRAY_TYPEDEFS(Type, TypeSuffix, Dynamic, X) \
290EIGEN_MAKE_ARRAY_FIXED_TYPEDEFS(Type, TypeSuffix, 2) \
291EIGEN_MAKE_ARRAY_FIXED_TYPEDEFS(Type, TypeSuffix, 3) \
292EIGEN_MAKE_ARRAY_FIXED_TYPEDEFS(Type, TypeSuffix, 4)
294EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(
int, i)
295EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(
float, f)
296EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(
double, d)
297EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(std::complex<float>, cf)
298EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES(std::complex<double>, cd)
300#undef EIGEN_MAKE_ARRAY_TYPEDEFS_ALL_SIZES
301#undef EIGEN_MAKE_ARRAY_TYPEDEFS
303#undef EIGEN_MAKE_ARRAY_TYPEDEFS_LARGE
305#define EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE_AND_SIZE(TypeSuffix, SizeSuffix) \
306using Eigen::Matrix##SizeSuffix##TypeSuffix; \
307using Eigen::Vector##SizeSuffix##TypeSuffix; \
308using Eigen::RowVector##SizeSuffix##TypeSuffix;
310#define EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(TypeSuffix) \
311EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE_AND_SIZE(TypeSuffix, 2) \
312EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE_AND_SIZE(TypeSuffix, 3) \
313EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE_AND_SIZE(TypeSuffix, 4) \
314EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE_AND_SIZE(TypeSuffix, X) \
316#define EIGEN_USING_ARRAY_TYPEDEFS \
317EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(i) \
318EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(f) \
319EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(d) \
320EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(cf) \
321EIGEN_USING_ARRAY_TYPEDEFS_FOR_TYPE(cd)
General-purpose arrays with easy API for coefficient-wise operations.
Definition Array.h:47
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array(const Array &other)
Copy constructor.
Definition Array.h:230
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array(const EigenBase< OtherDerived > &other)
Definition Array.h:237
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array & operator=(const EigenBase< OtherDerived > &other)
The usage of using Base::operator=; fails on MSVC.
Definition Array.h:76
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array & operator=(const DenseBase< OtherDerived > &other)
Copies the value of the expression other into *this with automatic resizing.
Definition Array.h:107
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array & operator=(const Scalar &value)
Set all the entries to value.
Definition Array.h:90
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array()
Default constructor.
Definition Array.h:132
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array(const Scalar &val0, const Scalar &val1, const Scalar &val2, const Scalar &val3)
constructs an initialized 4D vector with given coefficients
Definition Array.h:218
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array(const Scalar &val0, const Scalar &val1, const Scalar &val2)
constructs an initialized 3D vector with given coefficients
Definition Array.h:208
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Array & operator=(const Array &other)
This is a special case of the templated operator=.
Definition Array.h:116
Dense storage base class for matrices and arrays.
Definition PlainObjectBase.h:93
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar * data() const
Definition PlainObjectBase.h:228
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & operator=(const PlainObjectBase &other)
This is a special case of the templated operator=.
Definition PlainObjectBase.h:430
EIGEN_DEVICE_FUNC Derived & setConstant(Index size, const Scalar &value)
Resizes to the given size, and sets all coefficients in this expression to the given value.
Definition CwiseNullaryOp.h:352
EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE Derived & _set(const DenseBase< OtherDerived > &other)
Copies the value of the expression other into *this with automatic resizing.
Definition PlainObjectBase.h:680
Pseudo expression representing a solving operation.
Definition Solve.h:63
The type used to identify an array expression.
Definition Constants.h:508
Definition PlainObjectBase.h:882
Definition DenseStorage.h:25
Definition ForwardDeclarations.h:17