diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-10-04 17:56:04 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-10-18 19:04:09 +0000 |
commit | ccbebd991b6bbce30d10b88f464140338f706c5b (patch) | |
tree | 5f3215ba22d5630df1345f5cb5692155a8ac6e6e /formula | |
parent | 82275ecb0c5aae406dcf6637a56a84d729e78ac7 (diff) |
fdo#70000 add support for COVARIANCE.P and COVARIANCE.S functions
These functions have been introduced with Excel 2010, but were not
supported yet in calc.
COVARIANCE.P (population) replaces the COVAR function, but the COVAR
function remains present (in Excel as well as in calc).
COVARIANCE.S (sample) is a new function.
Change-Id: If5501b4090fb716adfb3d121c7898528fd1b7ad4
Reviewed-on: https://gerrit.libreoffice.org/6135
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/resource/core_resource.src | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index 6b1b1a848aaa..d1eb878e87e6 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -309,6 +309,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_PROB { Text = "PROB" ; }; String SC_OPCODE_CORREL { Text = "CORREL" ; }; String SC_OPCODE_COVAR { Text = "COVAR" ; }; + String SC_OPCODE_COVARIANCE_P { Text = "COM.MICROSOFT.COVARIANCE.P" ; }; + String SC_OPCODE_COVARIANCE_S { Text = "COM.MICROSOFT.COVARIANCE.S" ; }; String SC_OPCODE_PEARSON { Text = "PEARSON" ; }; String SC_OPCODE_RSQ { Text = "RSQ" ; }; String SC_OPCODE_STEYX { Text = "STEYX" ; }; @@ -657,6 +659,8 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH String SC_OPCODE_PROB { Text = "PROB" ; }; String SC_OPCODE_CORREL { Text = "CORREL" ; }; String SC_OPCODE_COVAR { Text = "COVAR" ; }; + String SC_OPCODE_COVARIANCE_P { Text = "COVARIANCE.P" ; }; + String SC_OPCODE_COVARIANCE_S { Text = "COVARIANCE.S" ; }; String SC_OPCODE_PEARSON { Text = "PEARSON" ; }; String SC_OPCODE_RSQ { Text = "RSQ" ; }; String SC_OPCODE_STEYX { Text = "STEYX" ; }; @@ -1788,6 +1792,14 @@ Resource RID_STRLIST_FUNCTION_NAMES { Text [ en-US ] = "COVAR" ; }; + String SC_OPCODE_COVARIANCE_P + { + Text [ en-US ] = "COVARIANCE.P" ; + }; + String SC_OPCODE_COVARIANCE_S + { + Text [ en-US ] = "COVARIANCE.S" ; + }; String SC_OPCODE_PEARSON { Text [ en-US ] = "PEARSON" ; |