diff options
author | Tomaž Vajngerl <quikee@gmail.com> | 2013-11-03 12:15:23 +0100 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2013-11-11 23:22:31 +0100 |
commit | e08543cfb28e963995c95829aaf718c34f359356 (patch) | |
tree | 86be93e3dddc7521380c51e4138d1d9625442ec2 /sc/sdi/scalc.sdi | |
parent | b3904220ef855d1cde6aae9e56b270b99405c494 (diff) |
New statistics function: Exponential Smoothing
Add initial implementation of exponential smoothing.
Change-Id: Id234aec6a0efece2ce8144f22359cf034256c40b
Diffstat (limited to 'sc/sdi/scalc.sdi')
-rw-r--r-- | sc/sdi/scalc.sdi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sc/sdi/scalc.sdi b/sc/sdi/scalc.sdi index 2f5024ae59dc..d5260bf8027e 100644 --- a/sc/sdi/scalc.sdi +++ b/sc/sdi/scalc.sdi @@ -3086,6 +3086,30 @@ SfxVoidItem CovarianceDialog SID_COVARIANCE_DIALOG GroupId = GID_OPTIONS; ] +SfxVoidItem ExponentialSmoothingDialog SID_EXPONENTIAL_SMOOTHING_DIALOG +() +[ + /* flags: */ + AutoUpdate = FALSE, + Cachable = Cachable, + FastCall = FALSE, + HasCoreId = FALSE, + HasDialog = TRUE, + ReadOnlyDoc = TRUE, + Toggle = FALSE, + Container = FALSE, + RecordAbsolute = FALSE, + RecordPerSet; + Synchron; + + /* config: */ + AccelConfig = TRUE, + MenuConfig = TRUE, + StatusBarConfig = FALSE, + ToolBoxConfig = TRUE, + GroupId = GID_OPTIONS; +] + //-------------------------------------------------------------------------- SfxVoidItem SolverDialog SID_OPENDLG_OPTSOLVER () |