aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2009-01-20 16:37:52 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2009-01-20 16:37:52 +0000
commit8973d12cdae503e0996edd52f8c78879274c0e70 (patch)
tree1b576ba18a8e88103fc7bb2eca4b685a4fb9968f /Eigen/src/Core
parent81cb887baf7932285380d1db93b51a77a847fdbd (diff)
* QR: add a rank() method and improve the accuracy of the rank
* computation * Array: add a count() method and rename AllAndAny.h file to BooleanRedux.h
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/MatrixBase.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/src/Core/MatrixBase.h b/Eigen/src/Core/MatrixBase.h
index 8c755c592..41dd894d7 100644
--- a/Eigen/src/Core/MatrixBase.h
+++ b/Eigen/src/Core/MatrixBase.h
@@ -557,6 +557,7 @@ template<typename Derived> class MatrixBase
bool all(void) const;
bool any(void) const;
+ int count() const;
const PartialRedux<Derived,Horizontal> rowwise() const;
const PartialRedux<Derived,Vertical> colwise() const;