diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-06-28 17:54:34 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-07-01 10:29:19 -0400 |
commit | 58380c11216cb9f03a98e3d53dcee702576fedb8 (patch) | |
tree | 32702ea3e8f01d84e20cb9fc6b9d6df6f7eead51 /sc/inc/scmatrix.hxx | |
parent | dfd0b37d82db6cb8f02b48e735cf6caacc2420e4 (diff) |
Better to calculate max and min value of matrix *in* the matrix itself.
Change-Id: I410b345ac32550a188aa356e133ef8e0e9b13d9f
Diffstat (limited to 'sc/inc/scmatrix.hxx')
-rw-r--r-- | sc/inc/scmatrix.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/inc/scmatrix.hxx b/sc/inc/scmatrix.hxx index 66b271b5a759..d6ac2791bb99 100644 --- a/sc/inc/scmatrix.hxx +++ b/sc/inc/scmatrix.hxx @@ -349,6 +349,9 @@ public: IterateResult Product(bool bTextAsZero) const; size_t Count(bool bCountStrings) const; + double GetMaxValue( bool bTextAsZero ) const; + double GetMinValue( bool bTextAsZero ) const; + // All other matrix functions MatMult, MInv, ... are in ScInterpreter // to be numerically safe. |