mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-13 12:19:12 +08:00
oops I forgot to include that file in the previous commit (fixing #65)
This commit is contained in:
parent
541eac0828
commit
e513cc75c4
@ -69,7 +69,6 @@ template<typename MatrixType> class Transpose
|
|||||||
|
|
||||||
inline int rows() const { return m_matrix.cols(); }
|
inline int rows() const { return m_matrix.cols(); }
|
||||||
inline int cols() const { return m_matrix.rows(); }
|
inline int cols() const { return m_matrix.rows(); }
|
||||||
inline int nonZeros() const { return m_matrix.nonZeros(); }
|
|
||||||
inline int stride() const { return m_matrix.stride(); }
|
inline int stride() const { return m_matrix.stride(); }
|
||||||
inline Scalar* data() { return m_matrix.data(); }
|
inline Scalar* data() { return m_matrix.data(); }
|
||||||
inline const Scalar* data() const { return m_matrix.data(); }
|
inline const Scalar* data() const { return m_matrix.data(); }
|
||||||
@ -354,5 +353,5 @@ lazyAssign(const CwiseBinaryOp<ei_scalar_sum_op<Scalar>,DerivedA,CwiseUnaryOp<ei
|
|||||||
return lazyAssign(static_cast<const MatrixBase<CwiseBinaryOp<ei_scalar_sum_op<Scalar>,DerivedA,CwiseUnaryOp<ei_scalar_conjugate_op<Scalar>, NestByValue<Eigen::Transpose<DerivedB> > > > >& >(other));
|
return lazyAssign(static_cast<const MatrixBase<CwiseBinaryOp<ei_scalar_sum_op<Scalar>,DerivedA,CwiseUnaryOp<ei_scalar_conjugate_op<Scalar>, NestByValue<Eigen::Transpose<DerivedB> > > > >& >(other));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // EIGEN_TRANSPOSE_H
|
#endif // EIGEN_TRANSPOSE_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user