add a blueNorm() function implementing the Blues's stable norm

algorithm. it is currently provided for experimentation
purpose only.
This commit is contained in:
Gael Guennebaud
2009-07-13 21:14:47 +02:00
parent ddbaaebf9e
commit f5d2317b12
4 changed files with 170 additions and 14 deletions

View File

@@ -381,8 +381,9 @@ template<typename Derived> class MatrixBase
template<typename OtherDerived>
Scalar dot(const MatrixBase<OtherDerived>& other) const;
RealScalar squaredNorm() const;
RealScalar norm() const;
RealScalar stableNorm() const;
RealScalar norm() const;
RealScalar stableNorm() const;
RealScalar blueNorm() const;
const PlainMatrixType normalized() const;
void normalize();