Dense storage base class for matrices and arrays.
This class can be extended with the help of the plugin mechanism described on the page TopicCustomizingEigen by defining the preprocessor symbol EIGEN_PLAINOBJECTBASE_PLUGIN.

Classes | |
| struct | StridedAlignedMapType |
| struct | StridedConstAlignedMapType |
| struct | StridedConstMapType |
| struct | StridedMapType |
Public Types | |
| enum | { Options = internal::traits<Derived>::Options } |
| enum | { NeedsToAlign } |
| typedef internal::dense_xpr_base < Derived >::type | Base |
| typedef internal::traits < Derived >::StorageKind | StorageKind |
| typedef internal::traits < Derived >::Index | Index |
| typedef internal::traits < Derived >::Scalar | Scalar |
| typedef internal::packet_traits < Scalar >::type | PacketScalar |
| typedef NumTraits< Scalar >::Real | RealScalar |
| typedef Derived | DenseType |
| typedef Eigen::Map< Derived, Unaligned > | MapType |
| typedef const Eigen::Map < const Derived, Unaligned > | ConstMapType |
| typedef Eigen::Map< Derived, Aligned > | AlignedMapType |
| typedef const Eigen::Map < const Derived, Aligned > | ConstAlignedMapType |
Public Member Functions | |
| Base & | base () |
| const Base & | base () const |
| EIGEN_STRONG_INLINE Index | rows () const |
| EIGEN_STRONG_INLINE Index | cols () const |
| EIGEN_STRONG_INLINE const Scalar & | coeff (Index row, Index col) const |
| EIGEN_STRONG_INLINE const Scalar & | coeff (Index index) const |
| EIGEN_STRONG_INLINE Scalar & | coeffRef (Index row, Index col) |
| EIGEN_STRONG_INLINE Scalar & | coeffRef (Index index) |
| EIGEN_STRONG_INLINE const Scalar & | coeffRef (Index row, Index col) const |
| EIGEN_STRONG_INLINE const Scalar & | coeffRef (Index index) const |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketScalar | packet (Index row, Index col) const |
| template<int LoadMode> | |
| EIGEN_STRONG_INLINE PacketScalar | packet (Index index) const |
| template<int StoreMode> | |
| EIGEN_STRONG_INLINE void | writePacket (Index row, Index col, const PacketScalar &x) |
| template<int StoreMode> | |
| EIGEN_STRONG_INLINE void | writePacket (Index index, const PacketScalar &x) |
| EIGEN_STRONG_INLINE const Scalar * | data () const |
| EIGEN_STRONG_INLINE Scalar * | data () |
| EIGEN_STRONG_INLINE void | resize (Index rows, Index cols) |
Resizes *this to a rows x cols matrix. | |
| void | resize (Index size) |
Resizes *this to a vector of length size. | |
| void | resize (NoChange_t, Index cols) |
| Resizes the matrix, changing only the number of columns. | |
| void | resize (Index rows, NoChange_t) |
| Resizes the matrix, changing only the number of rows. | |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE void | resizeLike (const EigenBase< OtherDerived > &_other) |
Resizes *this to have the same dimensions as other. | |
| EIGEN_STRONG_INLINE void | conservativeResize (Index rows, Index cols) |
| Resizes the matrix to rows x cols while leaving old values untouched. | |
| EIGEN_STRONG_INLINE void | conservativeResize (Index rows, NoChange_t) |
| Resizes the matrix to rows x cols while leaving old values untouched. | |
| EIGEN_STRONG_INLINE void | conservativeResize (NoChange_t, Index cols) |
| Resizes the matrix to rows x cols while leaving old values untouched. | |
| EIGEN_STRONG_INLINE void | conservativeResize (Index size) |
| Resizes the vector to size while retaining old values. | |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE void | conservativeResizeLike (const DenseBase< OtherDerived > &other) |
Resizes the matrix to rows x cols of other, while leaving old values untouched. | |
| EIGEN_STRONG_INLINE Derived & | operator= (const PlainObjectBase &other) |
| This is a special case of the templated operator=. | |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE Derived & | lazyAssign (const DenseBase< OtherDerived > &other) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE Derived & | operator= (const ReturnByValue< OtherDerived > &func) |
| EIGEN_STRONG_INLINE | PlainObjectBase () |
| EIGEN_STRONG_INLINE | PlainObjectBase (Index size, Index rows, Index cols) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE Derived & | operator= (const EigenBase< OtherDerived > &other) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE | PlainObjectBase (const EigenBase< OtherDerived > &other) |
| Derived & | setConstant (Index size, const Scalar &value) |
| Resizes to the given size, and sets all coefficients in this expression to the given value. | |
| Derived & | setConstant (Index rows, Index cols, const Scalar &value) |
| Resizes to the given size, and sets all coefficients in this expression to the given value. | |
| Derived & | setZero (Index size) |
| Resizes to the given size, and sets all coefficients in this expression to zero. | |
| Derived & | setZero (Index rows, Index cols) |
| Resizes to the given size, and sets all coefficients in this expression to zero. | |
| Derived & | setOnes (Index size) |
| Resizes to the given size, and sets all coefficients in this expression to one. | |
| Derived & | setOnes (Index rows, Index cols) |
| Resizes to the given size, and sets all coefficients in this expression to one. | |
| Derived & | setRandom (Index size) |
| Resizes to the given size, and sets all coefficients in this expression to random values. | |
| Derived & | setRandom (Index rows, Index cols) |
| Resizes to the given size, and sets all coefficients in this expression to random values. | |
Static Public Member Functions | |
Map | |
These are convenience functions returning Map objects. The Map() static functions return unaligned Map objects, while the AlignedMap() functions return aligned Map objects and thus should be called only with 16-byte-aligned data pointers. These methods do not allow to specify strides. If you need to specify strides, you have to use the Map class directly.
| |
| static ConstMapType | Map (const Scalar *data) |
| static MapType | Map (Scalar *data) |
| static ConstMapType | Map (const Scalar *data, Index size) |
| static MapType | Map (Scalar *data, Index size) |
| static ConstMapType | Map (const Scalar *data, Index rows, Index cols) |
| static MapType | Map (Scalar *data, Index rows, Index cols) |
| static ConstAlignedMapType | MapAligned (const Scalar *data) |
| static AlignedMapType | MapAligned (Scalar *data) |
| static ConstAlignedMapType | MapAligned (const Scalar *data, Index size) |
| static AlignedMapType | MapAligned (Scalar *data, Index size) |
| static ConstAlignedMapType | MapAligned (const Scalar *data, Index rows, Index cols) |
| static AlignedMapType | MapAligned (Scalar *data, Index rows, Index cols) |
| template<int Outer, int Inner> | |
| static StridedConstMapType < Stride< Outer, Inner > >::type | Map (const Scalar *data, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedMapType< Stride < Outer, Inner > >::type | Map (Scalar *data, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedConstMapType < Stride< Outer, Inner > >::type | Map (const Scalar *data, Index size, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedMapType< Stride < Outer, Inner > >::type | Map (Scalar *data, Index size, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedConstMapType < Stride< Outer, Inner > >::type | Map (const Scalar *data, Index rows, Index cols, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedMapType< Stride < Outer, Inner > >::type | Map (Scalar *data, Index rows, Index cols, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedConstAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (const Scalar *data, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (Scalar *data, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedConstAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (const Scalar *data, Index size, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (Scalar *data, Index size, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedConstAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (const Scalar *data, Index rows, Index cols, const Stride< Outer, Inner > &stride) |
| template<int Outer, int Inner> | |
| static StridedAlignedMapType < Stride< Outer, Inner > >::type | MapAligned (Scalar *data, Index rows, Index cols, const Stride< Outer, Inner > &stride) |
Protected Member Functions | |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE void | _resize_to_match (const EigenBase< OtherDerived > &other) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE Derived & | _set (const DenseBase< OtherDerived > &other) |
Copies the value of the expression other into *this with automatic resizing. | |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE void | _set_selector (const OtherDerived &other, const internal::true_type &) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE void | _set_selector (const OtherDerived &other, const internal::false_type &) |
| template<typename OtherDerived > | |
| EIGEN_STRONG_INLINE Derived & | _set_noalias (const DenseBase< OtherDerived > &other) |
| template<typename T0 , typename T1 > | |
| EIGEN_STRONG_INLINE void | _init2 (Index rows, Index cols, typename internal::enable_if< Base::SizeAtCompileTime!=2, T0 >::type *=0) |
| template<typename T0 , typename T1 > | |
| EIGEN_STRONG_INLINE void | _init2 (const Scalar &x, const Scalar &y, typename internal::enable_if< Base::SizeAtCompileTime==2, T0 >::type *=0) |
| template<typename OtherDerived > | |
| void | _swap (DenseBase< OtherDerived > const &other) |
Protected Attributes | |
| DenseStorage< Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options > | m_storage |
Private Types | |
| enum | { ThisConstantIsPrivateInPlainObjectBase } |
Friends | |
| class | Eigen::Map |
| class | Eigen::Map< Derived, Unaligned > |
| class | Eigen::Map< const Derived, Unaligned > |
| class | Eigen::Map< Derived, Aligned > |
| class | Eigen::Map< const Derived, Aligned > |
| struct | internal::matrix_swap_impl |
| typedef Eigen::Map<Derived, Aligned> Eigen::PlainObjectBase::AlignedMapType |
| typedef internal::dense_xpr_base<Derived>::type Eigen::PlainObjectBase::Base |
Reimplemented in Eigen::Matrix, mrpt::math::CMatrixTemplateNumeric, mrpt::math::CMatrixFixedNumeric, and Eigen::Array.
| typedef const Eigen::Map<const Derived, Aligned> Eigen::PlainObjectBase::ConstAlignedMapType |
| typedef const Eigen::Map<const Derived, Unaligned> Eigen::PlainObjectBase::ConstMapType |
| typedef Derived Eigen::PlainObjectBase::DenseType |
| typedef internal::traits<Derived>::Index Eigen::PlainObjectBase::Index |
| typedef Eigen::Map<Derived, Unaligned> Eigen::PlainObjectBase::MapType |
| typedef internal::packet_traits<Scalar>::type Eigen::PlainObjectBase::PacketScalar |
| typedef NumTraits<Scalar>::Real Eigen::PlainObjectBase::RealScalar |
| typedef internal::traits<Derived>::Scalar Eigen::PlainObjectBase::Scalar |
| typedef internal::traits<Derived>::StorageKind Eigen::PlainObjectBase::StorageKind |
anonymous enum [private] |
| EIGEN_STRONG_INLINE Eigen::PlainObjectBase::PlainObjectBase | ( | ) | [inline, explicit] |
| EIGEN_STRONG_INLINE Eigen::PlainObjectBase::PlainObjectBase | ( | const EigenBase< OtherDerived > & | other | ) | [inline] |
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::_resize_to_match | ( | const EigenBase< OtherDerived > & | other | ) | [inline, protected] |
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::_set | ( | const DenseBase< OtherDerived > & | other | ) | [inline, protected] |
Copies the value of the expression other into *this with automatic resizing.
*this might be resized to match the dimensions of other. If *this was a null matrix (not already initialized), it will be initialized.
Note that copying a row-vector into a vector (and conversely) is allowed. The resizing, if any, is then done in the appropriate way so that row-vectors remain row-vectors and vectors remain vectors.
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::_set_noalias | ( | const DenseBase< OtherDerived > & | other | ) | [inline, protected] |
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::_set_selector | ( | const OtherDerived & | other, |
| const internal::true_type & | |||
| ) | [inline, protected] |
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::_set_selector | ( | const OtherDerived & | other, |
| const internal::false_type & | |||
| ) | [inline, protected] |
| void Eigen::PlainObjectBase::_swap | ( | DenseBase< OtherDerived > const & | other | ) | [inline, protected] |
| EIGEN_STRONG_INLINE Index Eigen::PlainObjectBase::cols | ( | void | ) | const [inline] |
Definition at line 102 of file Core.
Referenced by mrpt::math::operator>>().
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::conservativeResize | ( | Index | rows, |
| Index | cols | ||
| ) | [inline] |
Resizes the matrix to rows x cols while leaving old values untouched.
The method is intended for matrices of dynamic size. If you only want to change the number of rows and/or of columns, you can use conservativeResize(NoChange_t, Index) or conservativeResize(Index, NoChange_t).
Matrices are resized relative to the top-left element. In case values need to be appended to the matrix they will be uninitialized.
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::conservativeResize | ( | Index | rows, |
| NoChange_t | |||
| ) | [inline] |
Resizes the matrix to rows x cols while leaving old values untouched.
As opposed to conservativeResize(Index rows, Index cols), this version leaves the number of columns unchanged.
In case the matrix is growing, new rows will be uninitialized.
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::conservativeResize | ( | NoChange_t | , |
| Index | cols | ||
| ) | [inline] |
Resizes the matrix to rows x cols while leaving old values untouched.
As opposed to conservativeResize(Index rows, Index cols), this version leaves the number of rows unchanged.
In case the matrix is growing, new columns will be uninitialized.
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::conservativeResize | ( | Index | size | ) | [inline] |
Resizes the vector to size while retaining old values.
. This method does not work for partially dynamic matrices when the static dimension is anything other than 1. For example it will not work with Matrix<double, 2, Dynamic>.
When values are appended, they will be uninitialized.
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::conservativeResizeLike | ( | const DenseBase< OtherDerived > & | other | ) | [inline] |
Resizes the matrix to rows x cols of other, while leaving old values untouched.
The method is intended for matrices of dynamic size. If you only want to change the number of rows and/or of columns, you can use conservativeResize(NoChange_t, Index) or conservativeResize(Index, NoChange_t).
Matrices are resized relative to the top-left element. In case values need to be appended to the matrix they will copied from other.
| EIGEN_STRONG_INLINE const Scalar* Eigen::PlainObjectBase::data | ( | ) | const [inline] |
| EIGEN_STRONG_INLINE Scalar* Eigen::PlainObjectBase::data | ( | ) | [inline] |
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::lazyAssign | ( | const DenseBase< OtherDerived > & | other | ) | [inline] |
| static ConstMapType Eigen::PlainObjectBase::Map | ( | const Scalar * | data | ) | [inline, static] |
| static ConstMapType Eigen::PlainObjectBase::Map | ( | const Scalar * | data, |
| Index | size | ||
| ) | [inline, static] |
| static ConstMapType Eigen::PlainObjectBase::Map | ( | const Scalar * | data, |
| Index | rows, | ||
| Index | cols | ||
| ) | [inline, static] |
| static StridedConstMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::Map | ( | const Scalar * | data, |
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::Map | ( | Scalar * | data, |
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedConstMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::Map | ( | const Scalar * | data, |
| Index | size, | ||
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::Map | ( | Scalar * | data, |
| Index | size, | ||
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static ConstAlignedMapType Eigen::PlainObjectBase::MapAligned | ( | const Scalar * | data | ) | [inline, static] |
| static AlignedMapType Eigen::PlainObjectBase::MapAligned | ( | Scalar * | data | ) | [inline, static] |
| static ConstAlignedMapType Eigen::PlainObjectBase::MapAligned | ( | const Scalar * | data, |
| Index | size | ||
| ) | [inline, static] |
| static AlignedMapType Eigen::PlainObjectBase::MapAligned | ( | Scalar * | data, |
| Index | size | ||
| ) | [inline, static] |
| static ConstAlignedMapType Eigen::PlainObjectBase::MapAligned | ( | const Scalar * | data, |
| Index | rows, | ||
| Index | cols | ||
| ) | [inline, static] |
| static AlignedMapType Eigen::PlainObjectBase::MapAligned | ( | Scalar * | data, |
| Index | rows, | ||
| Index | cols | ||
| ) | [inline, static] |
| static StridedConstAlignedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::MapAligned | ( | const Scalar * | data, |
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedAlignedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::MapAligned | ( | Scalar * | data, |
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedConstAlignedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::MapAligned | ( | const Scalar * | data, |
| Index | size, | ||
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| static StridedAlignedMapType<Stride<Outer, Inner> >::type Eigen::PlainObjectBase::MapAligned | ( | Scalar * | data, |
| Index | size, | ||
| const Stride< Outer, Inner > & | stride | ||
| ) | [inline, static] |
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::operator= | ( | const PlainObjectBase & | other | ) | [inline] |
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::operator= | ( | const ReturnByValue< OtherDerived > & | func | ) | [inline] |
Reimplemented in Eigen::Matrix.
| EIGEN_STRONG_INLINE Derived& Eigen::PlainObjectBase::operator= | ( | const EigenBase< OtherDerived > & | other | ) | [inline] |
Reimplemented in Eigen::Matrix, and Eigen::Array.
| EIGEN_STRONG_INLINE PacketScalar Eigen::PlainObjectBase::packet | ( | Index | row, |
| Index | col | ||
| ) | const [inline] |
| EIGEN_STRONG_INLINE PacketScalar Eigen::PlainObjectBase::packet | ( | Index | index | ) | const [inline] |
Resizes *this to a rows x cols matrix.
This method is intended for dynamic-size matrices, although it is legal to call it on any matrix as long as fixed dimensions are left unchanged. If you only want to change the number of rows and/or of columns, you can use resize(NoChange_t, Index), resize(Index, NoChange_t).
If the current number of coefficients of *this exactly matches the product rows * cols, then no memory allocation is performed and the current values are left unchanged. In all other cases, including shrinking, the data is reallocated and all previous values are lost.
Example:
Output:
| void Eigen::PlainObjectBase::resize | ( | Index | size | ) | [inline] |
Resizes *this to a vector of length size.
. This method does not work for partially dynamic matrices when the static dimension is anything other than 1. For example it will not work with Matrix<double, 2, Dynamic>.
Example:
Output:
| void Eigen::PlainObjectBase::resize | ( | NoChange_t | , |
| Index | cols | ||
| ) | [inline] |
Resizes the matrix, changing only the number of columns.
For the parameter of type NoChange_t, just pass the special value NoChange as in the example below.
Example:
Output:
| void Eigen::PlainObjectBase::resize | ( | Index | rows, |
| NoChange_t | |||
| ) | [inline] |
Resizes the matrix, changing only the number of rows.
For the parameter of type NoChange_t, just pass the special value NoChange as in the example below.
Example:
Output:
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::resizeLike | ( | const EigenBase< OtherDerived > & | _other | ) | [inline] |
Resizes *this to have the same dimensions as other.
Takes care of doing all the checking that's needed.
Note that copying a row-vector into a vector (and conversely) is allowed. The resizing, if any, is then done in the appropriate way so that row-vectors remain row-vectors and vectors remain vectors.
| EIGEN_STRONG_INLINE Index Eigen::PlainObjectBase::rows | ( | void | ) | const [inline] |
Definition at line 101 of file Core.
Referenced by mrpt::vision::CFeature::TDescriptors::hasDescriptorPolarImg(), mrpt::vision::CFeature::TDescriptors::hasDescriptorLogPolarImg(), and mrpt::math::operator>>().
| EIGEN_STRONG_INLINE Derived & Eigen::PlainObjectBase::setConstant | ( | Index | size, |
| const Scalar & | value | ||
| ) |
Resizes to the given size, and sets all coefficients in this expression to the given value.
Example:
Output:
| EIGEN_STRONG_INLINE Derived & Eigen::PlainObjectBase::setConstant | ( | Index | rows, |
| Index | cols, | ||
| const Scalar & | value | ||
| ) |
Resizes to the given size, and sets all coefficients in this expression to the given value.
| rows | the new number of rows |
| cols | the new number of columns |
| value | the value to which all coefficients are set |
Example:
Output:
| EIGEN_STRONG_INLINE Derived & Eigen::PlainObjectBase::setOnes | ( | Index | size | ) |
Resizes to the given size, and sets all coefficients in this expression to one.
Example:
Output:
Resizes to the given size, and sets all coefficients in this expression to one.
| rows | the new number of rows |
| cols | the new number of columns |
Example:
Output:
| EIGEN_STRONG_INLINE Derived & Eigen::PlainObjectBase::setRandom | ( | Index | size | ) |
Resizes to the given size, and sets all coefficients in this expression to random values.
Example:
Output:
Resizes to the given size, and sets all coefficients in this expression to random values.
| rows | the new number of rows |
| cols | the new number of columns |
Example:
Output:
| EIGEN_STRONG_INLINE Derived & Eigen::PlainObjectBase::setZero | ( | Index | size | ) |
Resizes to the given size, and sets all coefficients in this expression to zero.
Example:
Output:
Resizes to the given size, and sets all coefficients in this expression to zero.
| rows | the new number of rows |
| cols | the new number of columns |
Example:
Output:
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::writePacket | ( | Index | row, |
| Index | col, | ||
| const PacketScalar & | x | ||
| ) | [inline] |
| EIGEN_STRONG_INLINE void Eigen::PlainObjectBase::writePacket | ( | Index | index, |
| const PacketScalar & | x | ||
| ) | [inline] |
friend class Eigen::Map [friend] |
friend class Eigen::Map< const Derived, Aligned > [friend] |
friend class Eigen::Map< const Derived, Unaligned > [friend] |
friend class Eigen::Map< Derived, Aligned > [friend] |
friend class Eigen::Map< Derived, Unaligned > [friend] |
friend struct internal::matrix_swap_impl [friend] |
Reimplemented in Eigen::Array.
DenseStorage<Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options> Eigen::PlainObjectBase::m_storage [protected] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |