Go to the source code of this file.
Classes | |
struct | internal::traits< HouseholderSequence< VectorsType, CoeffsType, Side > > |
struct | internal::hseq_side_dependent_impl< VectorsType, CoeffsType, Side > |
struct | internal::hseq_side_dependent_impl< VectorsType, CoeffsType, OnTheRight > |
struct | internal::matrix_type_times_scalar_type< OtherScalarType, MatrixType > |
class | HouseholderSequence< VectorsType, CoeffsType, Side > |
Sequence of Householder reflections acting on subspaces with decreasing size. More... | |
Namespaces | |
namespace | internal |
Functions | |
template<typename OtherDerived , typename VectorsType , typename CoeffsType , int Side> | |
internal::matrix_type_times_scalar_type < typename VectorsType::Scalar, OtherDerived >::Type | operator* (const MatrixBase< OtherDerived > &other, const HouseholderSequence< VectorsType, CoeffsType, Side > &h) |
Computes the product of a matrix with a Householder sequence. | |
template<typename VectorsType , typename CoeffsType > | |
HouseholderSequence < VectorsType, CoeffsType > | householderSequence (const VectorsType &v, const CoeffsType &h) |
Convenience function for constructing a Householder sequence. | |
template<typename VectorsType , typename CoeffsType > | |
HouseholderSequence < VectorsType, CoeffsType, OnTheRight > | rightHouseholderSequence (const VectorsType &v, const CoeffsType &h) |
Convenience function for constructing a Householder sequence. |
HouseholderSequence<VectorsType,CoeffsType> householderSequence | ( | const VectorsType & | v, | |
const CoeffsType & | h | |||
) |
Convenience function for constructing a Householder sequence.
\
internal::matrix_type_times_scalar_type<typename VectorsType::Scalar,OtherDerived>::Type operator* | ( | const MatrixBase< OtherDerived > & | other, | |
const HouseholderSequence< VectorsType, CoeffsType, Side > & | h | |||
) |
Computes the product of a matrix with a Householder sequence.
[in] | other | Matrix being multiplied. |
[in] | h | HouseholderSequence being multiplied. |
This function computes where is the matrix other
and is the Householder sequence represented by h
.
HouseholderSequence<VectorsType,CoeffsType,OnTheRight> rightHouseholderSequence | ( | const VectorsType & | v, | |
const CoeffsType & | h | |||
) |
Convenience function for constructing a Householder sequence.
\
This function differs from householderSequence() in that the template argument OnTheSide
of the constructed HouseholderSequence is set to OnTheRight, instead of the default OnTheLeft.