diff options
author | Olivier Hallot <olivier.hallot@libreoffice.org> | 2020-06-03 10:22:36 -0300 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@libreoffice.org> | 2020-06-03 16:57:20 +0200 |
commit | 67026c44ece5d04b41eb1c2f2c3ebf086d558bbd (patch) | |
tree | 4909f0f04e6f6f0fefd1cbd1a35ef94866691211 | |
parent | c6409aa8d0e0c6342cb397f906ac602201581a27 (diff) |
Improve readabilty of SERIESSUM
Change-Id: Ia5f4c2ccd335f9be8606bb192cc88d703d80d00c
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/95436
Tested-by: Jenkins
Reviewed-by: Olivier Hallot <olivier.hallot@libreoffice.org>
-rw-r--r-- | source/text/scalc/01/04060106.xhp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/text/scalc/01/04060106.xhp b/source/text/scalc/01/04060106.xhp index 73f34bbee7..3a9cc11068 100644 --- a/source/text/scalc/01/04060106.xhp +++ b/source/text/scalc/01/04060106.xhp @@ -750,7 +750,7 @@ <h2 id="hd_id3152651">SERIESSUM</h2> <paragraph id="par_id3152688" role="paragraph" xml-lang="en-US"><ahelp hid=".">Sums the first terms of a power series.</ahelp></paragraph> -<paragraph id="par_id3152708" role="paragraph" xml-lang="en-US">SERIESSUM(x;n;m;coefficients) = coefficient_1*x^n + coefficient_2*x^(n+m) + coefficient_3*x^(n+2m) +...+ coefficient_i*x^(n+(i-1)m)</paragraph> +<paragraph id="par_id3152708" role="paragraph" xml-lang="en-US">SERIESSUM(x;n;m;c) = c<sub>1</sub>x<sup>n</sup> + c<sub>2</sub>x<sup>n+m</sup> + c<sub>3</sub>x<sup>n+2m</sup> + ... + c<sub>i</sub>x<sup>n + (i-1)m</sup>.</paragraph> <embed href="text/scalc/01/common_func.xhp#sectionsyntax"/> <paragraph id="par_idN11BD9" role="code" xml-lang="en-US">SERIESSUM(X; N; M; Coefficients)</paragraph> |