From 5a3a229550fb710d7e29ffed848c8317d0796e78 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Mon, 15 Nov 2010 11:11:22 +0100 Subject: fix return type of rightHouseholderSequence() --- Eigen/src/Householder/HouseholderSequence.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Eigen/src/Householder') diff --git a/Eigen/src/Householder/HouseholderSequence.h b/Eigen/src/Householder/HouseholderSequence.h index 2e95b8320..3b740a4fb 100644 --- a/Eigen/src/Householder/HouseholderSequence.h +++ b/Eigen/src/Householder/HouseholderSequence.h @@ -44,7 +44,7 @@ * A.applyOnTheLeft(H.adjoint()); // A = H^* * A * MatrixXd Q = H; // conversion to a dense matrix * \endcode - * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate. + * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators. * * \sa MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight() */ @@ -164,7 +164,7 @@ template class HouseholderS template void evalTo(DestType& dst) const { Index vecs = m_actualVectors; - // FIXME find a way to pass this temporary if the user want to + // FIXME find a way to pass this temporary if the user wants to Matrix temp(rows()); if( internal::is_same::type,DestType>::value @@ -273,13 +273,13 @@ HouseholderSequence householderSequence } template -HouseholderSequence rightHouseholderSequence(const VectorsType& v, const CoeffsType& h, bool trans=false) +HouseholderSequence rightHouseholderSequence(const VectorsType& v, const CoeffsType& h, bool trans=false) { return HouseholderSequence(v, h, trans); } template -HouseholderSequence rightHouseholderSequence +HouseholderSequence rightHouseholderSequence (const VectorsType& v, const CoeffsType& h, bool trans, typename VectorsType::Index actualVectors, typename VectorsType::Index shift) { -- cgit v1.2.3