diff options
author | Regina Henschel <rb.henschel@t-online.de> | 2012-06-09 17:34:38 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2012-06-12 23:55:48 +0200 |
commit | e659fbd2779d1f3e6f871a2405db173c5f70d320 (patch) | |
tree | 54314fc5ea379a88bf28c960cb130615a133da2a /scaddins/source/analysis/analysis.src | |
parent | 3174c0234bd9fdbbd182d05e86a2699e239f7f68 (diff) |
fdo#51017 ODFF: implement missing imaginary functions [AOO i111609 r1348096]
Adds IMTAN, IMSEC, IMCSC, IMCOT, IMSINH, IMCOSH, IMSECH, IMCSCH spreadsheet
functions.
Change-Id: I04ce0b1fdf787c3d8b2301cd92400e54049494bf
Diffstat (limited to 'scaddins/source/analysis/analysis.src')
-rw-r--r-- | scaddins/source/analysis/analysis.src | 144 |
1 files changed, 144 insertions, 0 deletions
diff --git a/scaddins/source/analysis/analysis.src b/scaddins/source/analysis/analysis.src index bdff7932b68b..8e81e3e3010c 100644 --- a/scaddins/source/analysis/analysis.src +++ b/scaddins/source/analysis/analysis.src @@ -1352,6 +1352,150 @@ Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS }; + Resource ANALYSIS_Imtan + { + String 1 // description Imtan + { + Text [ en-US ] = "Returns the tangent of a complex number"; + }; + + String 2 // name of parameter 1 Imtan + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imtan + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imsec + { + String 1 // description Imsec + { + Text [ en-US ] = "Returns the secant of a complex number"; + }; + + String 2 // name of parameter 1 Imsec + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imsec + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imcsc + { + String 1 // description Imcsc + { + Text [ en-US ] = "Returns the cosecant of a complex number"; + }; + + String 2 // name of parameter 1 Imcsc + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imcsc + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imcot + { + String 1 // description Imcot + { + Text [ en-US ] = "Returns the cotangent of a complex number"; + }; + + String 2 // name of parameter 1 Imcot + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imcot + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imsinh + { + String 1 // description Imsinh + { + Text [ en-US ] = "Returns the hyperbolic sine of a complex number"; + }; + + String 2 // name of parameter 1 Imsinh + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imsinh + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imcosh + { + String 1 // description Imcosh + { + Text [ en-US ] = "Returns the hyperbolic cosine of a complex number"; + }; + + String 2 // name of parameter 1 Imcosh + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imcosh + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imsech + { + String 1 // description Imsech + { + Text [ en-US ] = "Returns the hyperbolic secant of a complex number"; + }; + + String 2 // name of parameter 1 Imsech + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imsech + { + Text [ en-US ] = "A complex number"; + }; + }; + + Resource ANALYSIS_Imcsch + { + String 1 // description Imcsch + { + Text [ en-US ] = "Returns the hyperbolic cosecant of a complex number"; + }; + + String 2 // name of parameter 1 Imcsch + { + Text [ en-US ] = "Complex number"; + }; + + String 3 // description of parameter 1 Imcsch + { + Text [ en-US ] = "A complex number"; + }; + }; + Resource ANALYSIS_Complex { String 1 // description Complex |