Go to the documentation of this file.
11 #ifndef EIGEN_TRANSPOSE_H
12 #define EIGEN_TRANSPOSE_H
17 template<
typename MatrixType>
23 RowsAtCompileTime = MatrixType::ColsAtCompileTime,
24 ColsAtCompileTime = MatrixType::RowsAtCompileTime,
25 MaxRowsAtCompileTime = MatrixType::MaxColsAtCompileTime,
26 MaxColsAtCompileTime = MatrixType::MaxRowsAtCompileTime,
29 Flags1 = Flags0 | FlagsLvalueBit,
37 template<
typename MatrixType,
typename StorageKind>
class TransposeImpl;
53 :
public TransposeImpl<MatrixType,typename internal::traits<MatrixType>::StorageKind>
98 template<
typename MatrixType>
107 template<
typename XprType,
typename StorageKind>
121 using Base::coeffRef;
125 EIGEN_DEVICE_FUNC inline
Index innerStride()
const {
return derived().nestedExpression().innerStride(); }
126 EIGEN_DEVICE_FUNC
inline Index outerStride()
const {
return derived().nestedExpression().outerStride(); }
135 EIGEN_DEVICE_FUNC
inline const Scalar*
data()
const {
return derived().nestedExpression().data(); }
141 return derived().nestedExpression().coeffRef(colId, rowId);
147 return derived().nestedExpression().coeffRef(index);
170 template<
typename Derived>
171 inline Transpose<Derived>
182 template<
typename Derived>
186 return ConstTransposeReturnType(derived());
208 template<
typename Derived>
222 bool IsSquare = (MatrixType::RowsAtCompileTime == MatrixType::ColsAtCompileTime) && MatrixType::RowsAtCompileTime!=
Dynamic,
223 bool MatchPacketSize =
226 struct inplace_transpose_selector;
228 template<
typename MatrixType>
231 m.matrix().template triangularView<StrictlyUpper>().swap(m.matrix().transpose());
236 template<
typename MatrixType>
237 struct inplace_transpose_selector<
MatrixType,true,true> {
244 for (
Index i=0; i<PacketSize; ++i)
245 A.packet[i] = m.template packetByOuterInner<Alignment>(i,0);
247 for (
Index i=0; i<PacketSize; ++i)
248 m.template writePacket<Alignment>(m.rowIndexByOuterInner(i,0), m.colIndexByOuterInner(i,0),
A.packet[i]);
252 template<
typename MatrixType,
bool MatchPacketSize>
253 struct inplace_transpose_selector<
MatrixType,false,MatchPacketSize> {
255 if (m.rows()==m.cols())
256 m.matrix().template triangularView<StrictlyUpper>().swap(m.matrix().transpose());
258 m = m.transpose().eval();
283 template<
typename Derived>
287 &&
"transposeInPlace() called on a non-square non-resizable matrix");
314 template<
typename Derived>
317 derived() = adjoint().eval();
320 #ifndef EIGEN_NO_DEBUG
326 template<
bool DestIsTransposed,
typename OtherDerived>
332 template<
bool DestIsTransposed,
typename BinOp,
typename DerivedA,
typename DerivedB>
340 template<
typename Scalar,
bool DestIsTransposed,
typename OtherDerived>
343 static bool run(
const Scalar* dest,
const OtherDerived& src)
349 template<
typename Scalar,
bool DestIsTransposed,
typename BinOp,
typename DerivedA,
typename DerivedB>
365 template<
typename Derived,
typename OtherDerived,
366 bool MightHaveTransposeAliasing
367 = check_transpose_aliasing_compile_time_selector
372 static void run(
const Derived& dst,
const OtherDerived& other)
377 &&
"aliasing detected during transposition, use transposeInPlace() "
378 "or evaluate the rhs into a temporary using .eval()");
383 template<
typename Derived,
typename OtherDerived>
386 static void run(
const Derived&,
const OtherDerived&)
391 template<
typename Dst,
typename Src>
399 #endif // EIGEN_NO_DEBUG
403 #endif // EIGEN_TRANSPOSE_H
const EIGEN_DEVICE_FUNC AdjointReturnType adjoint() const
Map< Matrix< Scalar, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > MatrixType
const T::Scalar * extract_data(const T &m)
Generic expression where a coefficient-wise binary operator is applied to two expressions.
internal::remove_all< MatrixType >::type NestedExpression
EIGEN_DEVICE_FUNC Index cols() const
void check_for_aliasing(const Dst &dst, const Src &src)
const unsigned int RowMajorBit
EIGEN_DEVICE_FUNC internal::remove_reference< MatrixTypeNested >::type & nestedExpression()
#define EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
internal::ref_selector< MatrixType >::non_const_type m_matrix
Map< Matrix< T, Dynamic, Dynamic, ColMajor >, 0, OuterStride<> > matrix(T *data, int rows, int cols, int stride)
static bool run(const Scalar *dest, const CwiseBinaryOp< BinOp, DerivedA, DerivedB > &src)
remove_reference< MatrixTypeNested >::type MatrixTypeNestedPlain
Expression of the transpose of a matrix.
const unsigned int PacketAccessBit
TransposeImpl< MatrixType, typename internal::traits< MatrixType >::StorageKind >::Base Base
static bool run(const Scalar *dest, const OtherDerived &src)
internal::conditional< internal::is_lvalue< MatrixType >::value, Scalar, const Scalar >::type ScalarWithConstIfNotLvalue
const EIGEN_DEVICE_FUNC _LhsNested & lhs() const
#define EIGEN_GENERIC_PUBLIC_INTERFACE(Derived)
internal::generic_xpr_base< Transpose< XprType > >::type Base
const unsigned int LvalueBit
EIGEN_DEVICE_FUNC Index rows() const
dense_xpr_base< Transpose< MatrixType > >::type type
internal::TransposeImpl_base< MatrixType >::type Base
EIGEN_STRONG_INLINE void ptranspose(PacketBlock< Packet2cf, 2 > &kernel)
ref_selector< MatrixType >::type MatrixTypeNested
EIGEN_DEVICE_FUNC void transposeInPlace()
const EIGEN_DEVICE_FUNC _RhsNested & rhs() const
EIGEN_DEVICE_FUNC ScalarWithConstIfNotLvalue * data()
internal::conditional< NumTraits< Scalar >::IsComplex, CwiseUnaryOp< internal::scalar_conjugate_op< Scalar >, ConstTransposeReturnType >, ConstTransposeReturnType >::type AdjointReturnType
EIGEN_DEVICE_FUNC void adjointInPlace()
static void run(const Derived &, const OtherDerived &)
internal::add_const< Transpose< const Derived > >::type ConstTransposeReturnType
const EIGEN_DEVICE_FUNC Scalar * data() const
EIGEN_DEVICE_FUNC Index outerStride() const
internal::ref_selector< MatrixType >::non_const_type MatrixTypeNested
void run(Expr &expr, Dev &dev)
const EIGEN_DEVICE_FUNC internal::remove_all< MatrixTypeNested >::type & nestedExpression() const
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index index) const
EIGEN_DEVICE_FUNC TransposeReturnType transpose()
MatrixType A(a, *n, *n, *lda)
const unsigned int NestByRefBit
dense_xpr_base< Transpose< MatrixType > >::type type
#define EIGEN_INHERIT_ASSIGNMENT_OPERATORS(Derived)
static void run(const Derived &dst, const OtherDerived &other)
void resize(Index nrows, Index ncols)
const EIGEN_DEVICE_FUNC Scalar & coeffRef(Index rowId, Index colId) const
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
control_box_rst
Author(s): Christoph Rösmann
autogenerated on Wed Mar 2 2022 00:07:07