Bump version to 5.0-14
[LibreOffice.git] / scaddins / source / analysis / analysis.src
blobf45b0e3ba125b4b2c2412c8b235fb3ea802ac559
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include "analysis.hrc"
22 Resource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
24     Resource ANALYSIS_Workday
25     {
26         String 1    // description Workday
27         {
28             Text [ en-US ] = "Returns the serial number of the date before or after a specified number of workdays";
29         };
31         String 2 // name of parameter 1         Workday
32         {
33             Text [ en-US ] = "Start date";
34         };
36         String 3 // description of parameter 1  Workday
37         {
38             Text [ en-US ] = "The start date";
39         };
41         String 4 // name of parameter 2         Workday
42         {
43             Text [ en-US ] = "Days";
44         };
46         String 5 // description of parameter 2  Workday
47         {
48             Text [ en-US ] = "The number of workdays before or after the start date";
49         };
51         String 6 // name of parameter 3         Workday
52         {
53             Text [ en-US ] = "Holidays";
54         };
56         String 7 // description of parameter 3  Workday
57         {
58             Text [ en-US ] = "List of date values of days off (vacation, holidays, etc.)";
59         };
60     };
62     Resource ANALYSIS_Yearfrac
63     {
64         String 1    // description Yearfrac
65         {
66             Text [ en-US ] = "Returns the number of years (including fractional part) between two dates";
67         };
69         String 2 // name of parameter 1         Yearfrac
70         {
71             Text [ en-US ] = "Start date";
72         };
74         String 3 // description of parameter 1  Yearfrac
75         {
76             Text [ en-US ] = "The start date";
77         };
79         String 4 // name of parameter 2         Yearfrac
80         {
81             Text [ en-US ] = "End date";
82         };
84         String 5 // description of parameter 2  Yearfrac
85         {
86             Text [ en-US ] = "The end date";
87         };
89         String 6 // name of parameter 3         Yearfrac
90         {
91             Text [ en-US ] = "Basis";
92         };
94         String 7 // description of parameter 3  Yearfrac
95         {
96             Text [ en-US ] = "Basis indicates the day-count convention to use in the calculation";
97         };
98     };
100     Resource ANALYSIS_Edate
101     {
102         String 1    // description Edate
103         {
104             Text [ en-US ] = "Returns the serial number of the date that is a specified number of months before or after the start date";
105         };
107         String 2 // name of parameter 1         Edate
108         {
109             Text [ en-US ] = "Start date";
110         };
112         String 3 // description of parameter 1  Edate
113         {
114             Text [ en-US ] = "The start date";
115         };
117         String 4 // name of parameter 2         Edate
118         {
119             Text [ en-US ] = "Months";
120         };
122         String 5 // description of parameter 2  Edate
123         {
124             Text [ en-US ] = "Number of months before or after the start date";
125         };
126     };
128     Resource ANALYSIS_Weeknum
129     {
130         String 1    // description Weeknum_add
131         {
132             Text [ en-US ] = "Returns the number of the calendar week in which the specified date occurs.";
133         };
135         String 2 // name of parameter 1         Weeknum_add
136         {
137             Text [ en-US ] = "Date";
138         };
140         String 3 // description of parameter 1  Weeknum_add
141         {
142             Text [ en-US ] = "The date";
143         };
145         String 4 // name of parameter 2         Weeknum_add
146         {
147             Text [ en-US ] = "Return type";
148         };
150         String 5 // description of parameter 2  Weeknum_add
151         {
152             Text [ en-US ] = "Indicates the first day of the week (1 = Sunday, other values = Monday)";
153         };
154     };
156     Resource ANALYSIS_Eomonth
157     {
158         String 1    // description EoMonth
159         {
160             Text[ en-US ] = "Returns the serial number of the last day of the month that comes a certain number of months before or after the start date";
161         };
163         String 2 // name of parameter 1         EoMonth
164         {
165             Text [ en-US ] = "Start date";
166         };
168         String 3 // description of parameter 1  EoMonth
169         {
170             Text [ en-US ] = "The start date";
171         };
173         String 4 // name of parameter 2         EoMonth
174         {
175             Text [ en-US ] = "Months";
176         };
178         String 5 // description of parameter 2  EoMonth
179         {
180             Text [ en-US ] = "Number of months before or after the start date";
181         };
182     };
184     Resource ANALYSIS_Networkdays
185     {
186         String 1    // description Networkdays
187         {
188             Text [ en-US ] = "Returns the number of workdays between two dates";
189         };
191         String 2 // name of parameter 1         Networkdays
192         {
193             Text [ en-US ] = "Start date";
194         };
196         String 3 // description of parameter 1  Networkdays
197         {
198             Text [ en-US ] = "The start date";
199         };
201         String 4 // name of parameter 2         Networkdays
202         {
203             Text [ en-US ] = "End date";
204         };
206         String 5 // description of parameter 2  Networkdays
207         {
208             Text [ en-US ] = "The end date";
209         };
211         String 6 // name of parameter 3         Networkdays
212         {
213             Text [ en-US ] = "Holidays";
214         };
216         String 7 // description of parameter 3  Networkdays
217         {
218             Text [ en-US ] = "List of date values representing days off (vacation, holidays, etc.)";
219         };
220     };
222     Resource ANALYSIS_Iseven
223     {
224         String 1    // description Iseven_add
225         {
226             Text [ en-US ] = "Returns the value 'true' if the number is even";
227         };
229         String 2 // name of parameter 1         Iseven_add
230         {
231             Text [ en-US ] = "Number";
232         };
234         String 3 // description of parameter 1  Iseven_add
235         {
236             Text [ en-US ] = "The number";
237         };
238     };
240     Resource ANALYSIS_Isodd
241     {
242         String 1    // description Isodd_add
243         {
244             Text [ en-US ] = "Returns the value 'true' if the number is odd";
245         };
247         String 2 // name of parameter 1         Isodd_add
248         {
249             Text [ en-US ] = "Number";
250         };
252         String 3 // description of parameter 1  Isodd_add
253         {
254             Text [ en-US ] = "The number";
255         };
256     };
258     Resource ANALYSIS_Multinomial
259     {
260         String 1    // description Multinomial
261         {
262             Text [ en-US ] = "Returns the multinomial coefficient of a set of numbers";
263         };
265         String 2 // name of parameter 1         Multinomial
266         {
267             Text [ en-US ] = "Number(s)";
268         };
270         String 3 // description of parameter 1  Multinomial
271         {
272             Text [ en-US ] = "Number or list of numbers for which you want the multinomial coefficient";
273         };
274     };
276     Resource ANALYSIS_Seriessum
277     {
278         String 1    // description Seriessum
279         {
280             Text [ en-US ] = "Returns the sum of a power series";
281         };
283         String 2 // name of parameter 1         Seriessum
284         {
285             Text [ en-US ] = "X";
286         };
288         String 3 // description of parameter 1  Seriessum
289         {
290             Text [ en-US ] = "The independent variable of the power series";
291         };
293         String 4 // name of parameter 2         Seriessum
294         {
295             Text [ en-US ] = "N";
296         };
298         String 5 // description of parameter 2  Seriessum
299         {
300             Text [ en-US ] = "The initial power to which x is to be raised";
301         };
303         String 6 // name of parameter 3         Seriessum
304         {
305             Text [ en-US ] = "M";
306         };
308         String 7 // description of parameter 3  Seriessum
309         {
310             Text [ en-US ] = "The increment by which to increase n for each term in the series";
311         };
313         String 8 // name of parameter 4         Seriessum
314         {
315             Text [ en-US ] = "Coefficients";
316         };
318         String 9 // description of parameter 4  Seriessum
319         {
320             Text [ en-US ] = "Set of coefficients by which each successive power of the variable x is multiplied";
321         };
322     };
324     Resource ANALYSIS_Quotient
325     {
326         String 1    // description Quotient
327         {
328             Text [ en-US ] = "Returns the integer portion of a division";
329         };
331         String 2 // name of parameter 1         Quotient
332         {
333             Text [ en-US ] = "Numerator";
334         };
336         String 3 // description of parameter 1  Quotient
337         {
338             Text [ en-US ] = "The dividend";
339         };
341         String 4 // name of parameter 2         Quotient
342         {
343             Text [ en-US ] = "Denominator";
344         };
346         String 5 // description of parameter 2  Quotient
347         {
348             Text [ en-US ] = "The divisor";
349         };
350     };
352     Resource ANALYSIS_Mround
353     {
354         String 1    // description Mround
355         {
356             Text [ en-US ] = "Returns a number rounded to a specified multiple";
357         };
359         String 2 // name of parameter 1         Mround
360         {
361             Text [ en-US ] = "Number";
362         };
364         String 3 // description of parameter 1  Mround
365         {
366             Text [ en-US ] = "The number to round off";
367         };
369         String 4 // name of parameter 2         Mround
370         {
371             Text [ en-US ] = "Multiple";
372         };
374         String 5 // description of parameter 2  Mround
375         {
376             Text [ en-US ] = "The multiple to which you want to round number";
377         };
378     };
380     Resource ANALYSIS_Sqrtpi
381     {
382         String 1    // description SqrtPI
383         {
384             Text [ en-US ] = "Returns the square root of a number which has been multiplied by pi";
385         };
387         String 2 // name of parameter 1         SqrtPI
388         {
389             Text [ en-US ] = "Number";
390         };
392         String 3 // description of parameter 1  SqrtPI
393         {
394             Text [ en-US ] = "The number by which pi is multiplied";
395         };
396     };
398     Resource ANALYSIS_Randbetween
399     {
400         String 1    // description Randbetween
401         {
402             Text [ en-US ] = "Returns a random integer between the numbers you specify";
403         };
405         String 2 // name of parameter 1         Randbetween
406         {
407             Text [ en-US ] = "Bottom";
408         };
410         String 3 // description of parameter 1  Randbetween
411         {
412             Text [ en-US ] = "The smallest integer returned";
413         };
415         String 4 // name of parameter 2         Randbetween
416         {
417             Text [ en-US ] = "Top";
418         };
420         String 5 // description of parameter 2  Randbetween
421         {
422             Text [ en-US ] = "The largest integer returned";
423         };
424     };
426     Resource ANALYSIS_Gcd
427     {
428         String 1    // description Gcd_add
429         {
430             Text [ en-US ] = "Returns the greatest common divisor";
431         };
433         String 2 // name of parameter 1         Gcd_add
434         {
435             Text [ en-US ] = "Number(s)";
436         };
438         String 3 // description of parameter 1  Gcd_add
439         {
440             Text [ en-US ] = "Number or list of numbers";
441         };
442     };
444     Resource ANALYSIS_Lcm
445     {
446         String 1    // description Lcm_add
447         {
448             Text [ en-US ] = "Returns the least common multiple";
449         };
451         String 2 // name of parameter 1         Lcm_add
452         {
453             Text [ en-US ] = "Number(s)";
454         };
456         String 3 // description of parameter 1  Lcm_add
457         {
458             Text [ en-US ] = "Number or list of numbers";
459         };
460     };
462     Resource ANALYSIS_Besseli
463     {
464         String 1    // description BesselI
465         {
466             Text [ en-US ] = "Returns the modified Bessel function In(x)";
467         };
469         String 2 // name of parameter 1         BesselI
470         {
471             Text [ en-US ] = "X";
472         };
474         String 3 // description of parameter 1  BesselI
475         {
476             Text [ en-US ] = "The value at which the function is to be evaluated";
477         };
479         String 4 // name of parameter 2         BesselI
480         {
481             Text [ en-US ] = "N";
482         };
484         String 5 // description of parameter 2  BesselI
485         {
486             Text [ en-US ] = "The order of the Bessel function";
487         };
488     };
490     Resource ANALYSIS_Besselj
491     {
492         String 1    // description BesselJ
493         {
494             Text [ en-US ] = "Returns the Bessel function Jn(x)";
495         };
497         String 2 // name of parameter 1         BesselJ
498         {
499             Text [ en-US ] = "X";
500         };
502         String 3 // description of parameter 1  BesselJ
503         {
504             Text [ en-US ] = "The value at which the function is to be evaluated";
505         };
507         String 4 // name of parameter 2         BesselJ
508         {
509             Text [ en-US ] = "N";
510         };
512         String 5 // description of parameter 2  BesselJ
513         {
514             Text [ en-US ] = "The order of the Bessel function";
515         };
516     };
518     Resource ANALYSIS_Besselk
519     {
520         String 1    // description BesselK
521         {
522             Text [ en-US ] = "Returns the Bessel function Kn(x)";
523         };
525         String 2 // name of parameter 1         BesselK
526         {
527             Text [ en-US ] = "X";
528         };
530         String 3 // description of parameter 1  BesselK
531         {
532             Text [ en-US ] = "The value at which the function is to be evaluated";
533         };
535         String 4 // name of parameter 2         BesselK
536         {
537             Text [ en-US ] = "N";
538         };
540         String 5 // description of parameter 2  BesselK
541         {
542             Text [ en-US ] = "The order of the Bessel function";
543         };
544     };
546     Resource ANALYSIS_Bessely
547     {
548         String 1    // description BesselY
549         {
550             Text [ en-US ] = "Returns the Bessel function Yn(x)";
551         };
553         String 2 // name of parameter 1         BesselY
554         {
555             Text [ en-US ] = "X";
556         };
558         String 3 // description of parameter 1  BesselY
559         {
560             Text [ en-US ] = "The value at which the function is to be evaluated";
561         };
563         String 4 // name of parameter 2         BesselY
564         {
565             Text [ en-US ] = "N";
566         };
568         String 5 // description of parameter 2  BesselY
569         {
570             Text [ en-US ] = "The order of the Bessel function";
571         };
572     };
574     Resource ANALYSIS_Bin2Oct
575     {
576         String 1    // description Bin2Oct
577         {
578             Text [ en-US ] = "Converts a binary number to an octal number";
579         };
581         String 2 // name of parameter 1         Bin2Oct
582         {
583             Text [ en-US ] = "Number";
584         };
586         String 3 // description of parameter 1  Bin2Oct
587         {
588             Text [ en-US ] = "The binary number to be converted (as text)";
589         };
591         String 4 // name of parameter 2         Bin2Oct
592         {
593             Text [ en-US ] = "Places";
594         };
596         String 5 // description of parameter 2  Bin2Oct
597         {
598             Text [ en-US ] = "Number of places used";
599         };
600     };
602     Resource ANALYSIS_Bin2Dec
603     {
604         String 1    // description Bin2Dec
605         {
606             Text [ en-US ] = "Converts a binary number to a decimal number";
607         };
609         String 2 // name of parameter 1         Bin2Dec
610         {
611             Text [ en-US ] = "Number";
612         };
614         String 3 // description of parameter 1  Bin2Dec
615         {
616             Text [ en-US ] = "The binary number to be converted (as text)";
617         };
618     };
620     Resource ANALYSIS_Bin2Hex
621     {
622         String 1    // description Bin2Hex
623         {
624             Text [ en-US ] = "Converts a binary number to a hexadecimal number";
625         };
627         String 2 // name of parameter 1         Bin2Hex
628         {
629             Text [ en-US ] = "Number";
630         };
632         String 3 // description of parameter 1  Bin2Hex
633         {
634             Text [ en-US ] = "The binary number to be converted (as text)";
635         };
637         String 4 // name of parameter 2         Bin2Hex
638         {
639             Text [ en-US ] = "Places";
640         };
642         String 5 // description of parameter 2  Bin2Hex
643         {
644             Text [ en-US ] = "Number of places used.";
645         };
646     };
648     Resource ANALYSIS_Oct2Bin
649     {
650         String 1    // description Oct2Bin
651         {
652             Text [ en-US ] = "Converts an octal number to a binary number";
653         };
655         String 2 // name of parameter 1         Oct2Bin
656         {
657             Text [ en-US ] = "Number";
658         };
660         String 3 // description of parameter 1  Oct2Bin
661         {
662             Text [ en-US ] = "The octal number to be converted (as text)";
663         };
665         String 4 // name of parameter 2         Oct2Bin
666         {
667             Text [ en-US ] = "Places";
668         };
670         String 5 // description of parameter 2  Oct2Bin
671         {
672             Text [ en-US ] = "Number of places used";
673         };
674     };
676     Resource ANALYSIS_Oct2Dec
677     {
678         String 1    // description Oct2Dec
679         {
680             Text [ en-US ] = "Converts an octal number to a decimal number";
681         };
683         String 2 // name of parameter 1         Oct2Dec
684         {
685             Text [ en-US ] = "Number";
686         };
688         String 3 // description of parameter 1  Oct2Dec
689         {
690             Text [ en-US ] = "The octal number to be converted (as text)";
691         };
692     };
694     Resource ANALYSIS_Oct2Hex
695     {
696         String 1    // description Oct2Hex
697         {
698             Text [ en-US ] = "Converts an octal number to a hexadecimal number";
699         };
701         String 2 // name of parameter 1         Oct2Hex
702         {
703             Text [ en-US ] = "Number";
704         };
706         String 3 // description of parameter 1  Oct2Hex
707         {
708             Text [ en-US ] = "The octal number to be converted (as text)";
709         };
711         String 4 // name of parameter 2         Oct2Hex
712         {
713             Text [ en-US ] = "Places";
714         };
716         String 5 // description of parameter 2  Oct2Hex
717         {
718             Text [ en-US ] = "Number of places used";
719         };
720     };
722     Resource ANALYSIS_Dec2Bin
723     {
724         String 1    // description Dec2Bin
725         {
726             Text [ en-US ] = "Converts a decimal number to a binary number";
727         };
729         String 2 // name of parameter 1         Dec2Bin
730         {
731             Text [ en-US ] = "Number";
732         };
734         String 3 // description of parameter 1  Dec2Bin
735         {
736             Text [ en-US ] = "The decimal integer to be converted";
737         };
739         String 4 // name of parameter 2         Dec2Bin
740         {
741             Text [ en-US ] = "Places";
742         };
744         String 5 // description of parameter 2  Dec2Bin
745         {
746             Text [ en-US ] = "Number of places used";
747         };
748     };
750     Resource ANALYSIS_Dec2Hex
751     {
752         String 1    // description Dec2Hex
753         {
754             Text [ en-US ] = "Converts a decimal number to a hexadecimal number";
755         };
757         String 2 // name of parameter 1         Dec2Hex
758         {
759             Text [ en-US ] = "Number";
760         };
762         String 3 // description of parameter 1  Dec2Hex
763         {
764             Text [ en-US ] = "The decimal integer to be converted";
765         };
767         String 4 // name of parameter 2         Dec2Hex
768         {
769             Text [ en-US ] = "Places";
770         };
772         String 5 // description of parameter 2  Dec2Hex
773         {
774             Text [ en-US ] = "Number of places used";
775         };
776     };
778     Resource ANALYSIS_Dec2Oct
779     {
780         String 1    // description Dec2Oct
781         {
782             Text [ en-US ] = "Converts a decimal number into an octal number";
783         };
785         String 2 // name of parameter 1         Dec2Oct
786         {
787             Text [ en-US ] = "Number";
788         };
790         String 3 // description of parameter 1  Dec2Oct
791         {
792             Text [ en-US ] = "The decimal number";
793         };
795         String 4 // name of parameter 2         Dec2Oct
796         {
797             Text [ en-US ] = "Places";
798         };
800         String 5 // description of parameter 2  Dec2Oct
801         {
802             Text [ en-US ] = "Number of places used";
803         };
804     };
806     Resource ANALYSIS_Hex2Bin
807     {
808         String 1    // description Hex2Bin
809         {
810             Text [ en-US ] = "Converts a hexadecimal number to a binary number";
811         };
813         String 2 // name of parameter 1         Hex2Bin
814         {
815             Text [ en-US ] = "Number";
816         };
818         String 3 // description of parameter 1  Hex2Bin
819         {
820             Text [ en-US ] = "The hexadecimal number to be converted (as text)";
821         };
823         String 4 // name of parameter 2         Hex2Bin
824         {
825             Text [ en-US ] = "Places";
826         };
828         String 5 // description of parameter 2  Hex2Bin
829         {
830             Text [ en-US ] = "Number of places used";
831         };
832     };
834     Resource ANALYSIS_Hex2Dec
835     {
836         String 1    // description Hex2Dec
837         {
838             Text [ en-US ] = "Converts a hexadecimal number to a decimal number";
839         };
841         String 2 // name of parameter 1         Hex2Dec
842         {
843             Text [ en-US ] = "Number";
844         };
846         String 3 // description of parameter 1  Hex2Dec
847         {
848             Text [ en-US ] = "The hexadecimal number to be converted (as text)";
849         };
850     };
852     Resource ANALYSIS_Hex2Oct
853     {
854         String 1    // description Hex2Oct
855         {
856             Text [ en-US ] = "Converts a hexadecimal number to an octal number";
857         };
859         String 2 // name of parameter 1         Hex2Oct
860         {
861             Text [ en-US ] = "Number";
862         };
864         String 3 // description of parameter 1  Hex2Oct
865         {
866             Text [ en-US ] = "The hexadecimal number to be converted (as text)";
867         };
869         String 4 // name of parameter 2         Hex2Oct
870         {
871             Text [ en-US ] = "Places";
872         };
874         String 5 // description of parameter 2  Hex2Oct
875         {
876             Text [ en-US ] = "Number of places used";
877         };
878     };
880     Resource ANALYSIS_Delta
881     {
882         String 1    // description Delta
883         {
884             Text [ en-US ] = "Tests whether two values are equal";
885         };
887         String 2 // name of parameter 1         Delta
888         {
889             Text [ en-US ] = "Number 1";
890         };
892         String 3 // description of parameter 1  Delta
893         {
894             Text [ en-US ] = "The first number";
895         };
897         String 4 // name of parameter 2         Delta
898         {
899             Text [ en-US ] = "Number 2";
900         };
902         String 5 // description of parameter 2  Delta
903         {
904             Text [ en-US ] = "The second number";
905         };
906     };
908     Resource ANALYSIS_Erf
909     {
910         String 1    // description Erf
911         {
912             Text [ en-US ] = "Returns the error function";
913         };
915         String 2 // name of parameter 1         Erf
916         {
917             Text [ en-US ] = "Lower limit";
918         };
920         String 3 // description of parameter 1  Erf
921         {
922             Text [ en-US ] = "The lower limit for integration";
923         };
925         String 4 // name of parameter 2         Erf
926         {
927             Text [ en-US ] = "Upper limit";
928         };
930         String 5 // description of parameter 2  Erf
931         {
932             Text [ en-US ] = "The upper limit for integration";
933         };
934     };
936     Resource ANALYSIS_Erfc
937     {
938         String 1    // description Erfc
939         {
940             Text [ en-US ] = "Returns the complementary error function";
941         };
943         String 2 // name of parameter 1         Erfc
944         {
945             Text [ en-US ] = "Lower limit";
946         };
948         String 3 // description of parameter 1  Erfc
949         {
950             Text [ en-US ] = "The lower limit for integration";
951         };
952     };
954     Resource ANALYSIS_Gestep
955     {
956         String 1    // description GeStep
957         {
958             Text [ en-US ] = "Tests whether a number is greater than a threshold value";
959         };
961         String 2 // name of parameter 1         GeStep
962         {
963             Text [ en-US ] = "Number";
964         };
966         String 3 // description of parameter 1  GeStep
967         {
968             Text [ en-US ] = "The value to test against step";
969         };
971         String 4 // name of parameter 2         GeStep
972         {
973             Text [ en-US ] = "Step";
974         };
976         String 5 // description of parameter 2  GeStep
977         {
978             Text [ en-US ] = "The threshold value";
979         };
980     };
982     Resource ANALYSIS_Factdouble
983     {
984         String 1    // description Factdouble
985         {
986             Text [ en-US ] = "Returns the double factorial of Number";
987         };
989         String 2 // name of parameter 1         Factdouble
990         {
991             Text [ en-US ] = "Number";
992         };
994         String 3 // description of parameter 1  Factdouble
995         {
996             Text [ en-US ] = "The number";
997         };
998     };
1000     Resource ANALYSIS_Imabs
1001     {
1002         String 1    // description Imabs
1003         {
1004             Text [ en-US ] = "Returns the absolute value (modulus) of a complex number";
1005         };
1007         String 2 // name of parameter 1         Imabs
1008         {
1009             Text [ en-US ] = "Complex number";
1010         };
1012         String 3 // description of parameter 1  Imabs
1013         {
1014             Text [ en-US ] = "The complex number";
1015         };
1016     };
1018     Resource ANALYSIS_Imaginary
1019     {
1020         String 1    // description Imaginary
1021         {
1022             Text [ en-US ] = "Returns the imaginary coefficient of a complex number";
1023         };
1025         String 2 // name of parameter 1         Imaginary
1026         {
1027             Text [ en-US ] = "Complex number";
1028         };
1030         String 3 // description of parameter 1  Imaginary
1031         {
1032             Text [ en-US ] = "The complex number";
1033         };
1034     };
1036     Resource ANALYSIS_Impower
1037     {
1038         String 1    // description Impower
1039         {
1040             Text [ en-US ] = "Returns a complex number raised to a real power";
1041         };
1043         String 2 // name of parameter 1         Impower
1044         {
1045             Text [ en-US ] = "Complex number";
1046         };
1048         String 3 // description of parameter 1  Impower
1049         {
1050             Text [ en-US ] = "The complex number";
1051         };
1053         String 4 // name of parameter 2         Impower
1054         {
1055             Text [ en-US ] = "Number";
1056         };
1058         String 5 // description of parameter 2  Impower
1059         {
1060             Text [ en-US ] = "Power to which the complex number is raised";
1061         };
1062     };
1064     Resource ANALYSIS_Imargument
1065     {
1066         String 1    // description Imargument
1067         {
1068             Text [ en-US ] = "Returns the argument theta, an angle expressed in radians";
1069         };
1071         String 2 // name of parameter 1         Imargument
1072         {
1073             Text [ en-US ] = "Complex number";
1074         };
1076         String 3 // description of parameter 1  Imargument
1077         {
1078             Text [ en-US ] = "A complex number";
1079         };
1080     };
1082     Resource ANALYSIS_Imcos
1083     {
1084         String 1    // description Imcos
1085         {
1086             Text [ en-US ] = "Returns the cosine of a complex number";
1087         };
1089         String 2 // name of parameter 1         Imcos
1090         {
1091             Text [ en-US ] = "Complex number";
1092         };
1094         String 3 // description of parameter 1  Imcos
1095         {
1096             Text [ en-US ] = "A complex number";
1097         };
1098     };
1100     Resource ANALYSIS_Imdiv
1101     {
1102         String 1    // description Imdiv
1103         {
1104             Text [ en-US ] = "Returns the quotient of two complex numbers";
1105         };
1107         String 2 // name of parameter 1         Imdiv
1108         {
1109             Text [ en-US ] = "Numerator";
1110         };
1112         String 3 // description of parameter 1  Imdiv
1113         {
1114             Text [ en-US ] = "The dividend";
1115         };
1117         String 4 // name of parameter 2         Imdiv
1118         {
1119             Text [ en-US ] = "Denominator";
1120         };
1122         String 5 // description of parameter 2  Imdiv
1123         {
1124             Text [ en-US ] = "The divisor";
1125         };
1126     };
1128     Resource ANALYSIS_Imexp
1129     {
1130         String 1    // description Imexp
1131         {
1132             Text [ en-US ] = "Returns the algebraic form of the exponential of a complex number";
1133         };
1135         String 2 // name of parameter 1         Imexp
1136         {
1137             Text [ en-US ] = "Complex number";
1138         };
1140         String 3 // description of parameter 1  Imexp
1141         {
1142             Text [ en-US ] = "The complex number";
1143         };
1144     };
1146     Resource ANALYSIS_Imconjugate
1147     {
1148         String 1    // description Imconjugate
1149         {
1150             Text [ en-US ] = "Returns the complex conjugate of a complex number";
1151         };
1153         String 2 // name of parameter 1         Imconjugate
1154         {
1155             Text [ en-US ] = "Complex number";
1156         };
1158         String 3 // description of parameter 1  Imconjugate
1159         {
1160             Text [ en-US ] = "The complex number";
1161         };
1162     };
1164     Resource ANALYSIS_Imln
1165     {
1166         String 1    // description Imln
1167         {
1168             Text [ en-US ] = "Returns the natural logarithm of a complex number";
1169         };
1171         String 2 // name of parameter 1         Imln
1172         {
1173             Text [ en-US ] = "Complex number";
1174         };
1176         String 3 // description of parameter 1  Imln
1177         {
1178             Text [ en-US ] = "The complex number";
1179         };
1180     };
1182     Resource ANALYSIS_Imlog10
1183     {
1184         String 1    // description Imlog10
1185         {
1186             Text [ en-US ] = "Returns the base-10 logarithm of a complex number";
1187         };
1189         String 2 // name of parameter 1         Imlog10
1190         {
1191             Text [ en-US ] = "Complex number";
1192         };
1194         String 3 // description of parameter 1  Imlog10
1195         {
1196             Text [ en-US ] = "The complex number";
1197         };
1198     };
1200     Resource ANALYSIS_Imlog2
1201     {
1202         String 1    // description Imlog2
1203         {
1204             Text [ en-US ] = "Returns the base-2 logarithm of a complex number";
1205         };
1207         String 2 // name of parameter 1         Imlog2
1208         {
1209             Text [ en-US ] = "Complex number";
1210         };
1212         String 3 // description of parameter 1  Imlog2
1213         {
1214             Text [ en-US ] = "The complex number";
1215         };
1216     };
1218     Resource ANALYSIS_Improduct
1219     {
1220         String 1    // description Improduct
1221         {
1222             Text [ en-US ] = "Returns the product of several complex numbers";
1223         };
1225         String 2 // name of parameter 1         Improduct
1226         {
1227             Text [ en-US ] = "Complex number";
1228         };
1230         String 3 // description of parameter 1  Improduct
1231         {
1232             Text [ en-US ] = "The first complex number";
1233         };
1235         String 4 // name of parameter 2         Improduct
1236         {
1237             Text [ en-US ] = "Complex number";
1238         };
1240         String 5 // description of parameter 2  Improduct
1241         {
1242             Text [ en-US ] = "Another complex number";
1243         };
1244     };
1246     Resource ANALYSIS_Imreal
1247     {
1248         String 1    // description Imreal
1249         {
1250             Text [ en-US ] = "Returns the real coefficient of a complex number";
1251         };
1253         String 2 // name of parameter 1         Imreal
1254         {
1255             Text [ en-US ] = "Complex number";
1256         };
1258         String 3 // description of parameter 1  Imreal
1259         {
1260             Text [ en-US ] = "The complex number";
1261         };
1262     };
1264     Resource ANALYSIS_Imsin
1265     {
1266         String 1    // description Imsin
1267         {
1268             Text [ en-US ] = "Returns the sine of a complex number";
1269         };
1271         String 2 // name of parameter 1         Imsin
1272         {
1273             Text [ en-US ] = "Complex number";
1274         };
1276         String 3 // description of parameter 1  Imsin
1277         {
1278             Text [ en-US ] = "The complex number";
1279         };
1280     };
1282     Resource ANALYSIS_Imsub
1283     {
1284         String 1    // description Imsub
1285         {
1286             Text [ en-US ] = "Returns the difference of two complex numbers";
1287         };
1289         String 2 // name of parameter 1         Imsub
1290         {
1291             Text [ en-US ] = "Complex number 1";
1292         };
1294         String 3 // description of parameter 1  Imsub
1295         {
1296             Text [ en-US ] = "Complex number 1";
1297         };
1299         String 4 // name of parameter 2         Imsub
1300         {
1301             Text [ en-US ] = "Complex number 2";
1302         };
1304         String 5 // description of parameter 2  Imsub
1305         {
1306             Text [ en-US ] = "Complex number 2";
1307         };
1308     };
1310     Resource ANALYSIS_Imsqrt
1311     {
1312         String 1    // description Imsqrt
1313         {
1314             Text [ en-US ] = "Returns the square root of a complex number";
1315         };
1317         String 2 // name of parameter 1         Imsqrt
1318         {
1319             Text [ en-US ] = "Complex number";
1320         };
1322         String 3 // description of parameter 1  Imsqrt
1323         {
1324             Text [ en-US ] = "The complex number";
1325         };
1326     };
1328     Resource ANALYSIS_Imsum
1329     {
1330         String 1    // description Imsum
1331         {
1332             Text [ en-US ] = "Returns the sum of complex numbers";
1333         };
1335         String 2 // name of parameter 1         Imsum
1336         {
1337             Text [ en-US ] = "Complex number";
1338         };
1340         String 3 // description of parameter 1  Imsum
1341         {
1342             Text [ en-US ] = "The complex number";
1343         };
1345     };
1347     Resource ANALYSIS_Imtan
1348     {
1349         String 1    // description Imtan
1350         {
1351             Text [ en-US ] = "Returns the tangent of a complex number";
1352         };
1354         String 2 // name of parameter 1         Imtan
1355         {
1356             Text [ en-US ] = "Complex number";
1357         };
1359         String 3 // description of parameter 1  Imtan
1360         {
1361             Text [ en-US ] = "A complex number";
1362         };
1363     };
1365     Resource ANALYSIS_Imsec
1366     {
1367         String 1    // description Imsec
1368         {
1369             Text [ en-US ] = "Returns the secant of a complex number";
1370         };
1372         String 2 // name of parameter 1         Imsec
1373         {
1374             Text [ en-US ] = "Complex number";
1375         };
1377         String 3 // description of parameter 1  Imsec
1378         {
1379             Text [ en-US ] = "A complex number";
1380         };
1381     };
1383     Resource ANALYSIS_Imcsc
1384     {
1385         String 1    // description Imcsc
1386         {
1387             Text [ en-US ] = "Returns the cosecant of a complex number";
1388         };
1390         String 2 // name of parameter 1         Imcsc
1391         {
1392             Text [ en-US ] = "Complex number";
1393         };
1395         String 3 // description of parameter 1  Imcsc
1396         {
1397             Text [ en-US ] = "A complex number";
1398         };
1399     };
1401     Resource ANALYSIS_Imcot
1402     {
1403         String 1    // description Imcot
1404         {
1405             Text [ en-US ] = "Returns the cotangent of a complex number";
1406         };
1408         String 2 // name of parameter 1         Imcot
1409         {
1410             Text [ en-US ] = "Complex number";
1411         };
1413         String 3 // description of parameter 1  Imcot
1414         {
1415             Text [ en-US ] = "A complex number";
1416         };
1417     };
1419     Resource ANALYSIS_Imsinh
1420     {
1421         String 1    // description Imsinh
1422         {
1423             Text [ en-US ] = "Returns the hyperbolic sine of a complex number";
1424         };
1426         String 2 // name of parameter 1         Imsinh
1427         {
1428             Text [ en-US ] = "Complex number";
1429         };
1431         String 3 // description of parameter 1  Imsinh
1432         {
1433             Text [ en-US ] = "A complex number";
1434         };
1435     };
1437     Resource ANALYSIS_Imcosh
1438     {
1439         String 1    // description Imcosh
1440         {
1441             Text [ en-US ] = "Returns the hyperbolic cosine of a complex number";
1442         };
1444         String 2 // name of parameter 1         Imcosh
1445         {
1446             Text [ en-US ] = "Complex number";
1447         };
1449         String 3 // description of parameter 1  Imcosh
1450         {
1451             Text [ en-US ] = "A complex number";
1452         };
1453     };
1455     Resource ANALYSIS_Imsech
1456     {
1457         String 1    // description Imsech
1458         {
1459             Text [ en-US ] = "Returns the hyperbolic secant of a complex number";
1460         };
1462         String 2 // name of parameter 1         Imsech
1463         {
1464             Text [ en-US ] = "Complex number";
1465         };
1467         String 3 // description of parameter 1  Imsech
1468         {
1469             Text [ en-US ] = "A complex number";
1470         };
1471     };
1473     Resource ANALYSIS_Imcsch
1474     {
1475         String 1    // description Imcsch
1476         {
1477             Text [ en-US ] = "Returns the hyperbolic cosecant of a complex number";
1478         };
1480         String 2 // name of parameter 1         Imcsch
1481         {
1482             Text [ en-US ] = "Complex number";
1483         };
1485         String 3 // description of parameter 1  Imcsch
1486         {
1487             Text [ en-US ] = "A complex number";
1488         };
1489     };
1491     Resource ANALYSIS_Complex
1492     {
1493         String 1    // description Complex
1494         {
1495             Text [ en-US ] = "Converts real and imaginary coefficients into a complex number";
1496         };
1498         String 2 // name of parameter 1         Complex
1499         {
1500             Text [ en-US ] = "Real num";
1501         };
1503         String 3 // description of parameter 1  Complex
1504         {
1505             Text [ en-US ] = "The real coefficient";
1506         };
1508         String 4 // name of parameter 2         Complex
1509         {
1510             Text [ en-US ] = "I num";
1511         };
1513         String 5 // description of parameter 2  Complex
1514         {
1515             Text [ en-US ] = "The imaginary coefficient";
1516         };
1518         String 6 // name of parameter 3         Complex
1519         {
1520             Text [ en-US ] = "Suffix";
1521         };
1523         String 7 // description of parameter 3  Complex
1524         {
1525             Text [ en-US ] = "The suffix";
1526         };
1527     };
1529     Resource ANALYSIS_Convert
1530     {
1531         String 1    // description Convert_add
1532         {
1533             Text [ en-US ] = "Converts a number from one measurement system to another";
1534         };
1536         String 2 // name of parameter 1         Convert_add
1537         {
1538             Text [ en-US ] = "Number";
1539         };
1541         String 3 // description of parameter 1  Convert_add
1542         {
1543             Text [ en-US ] = "The number";
1544         };
1546         String 4 // name of parameter 2         Convert_add
1547         {
1548             Text [ en-US ] = "From unit";
1549         };
1551         String 5 // description of parameter 2  Convert_add
1552         {
1553             Text [ en-US ] = "Unit of measure for number";
1554         };
1556         String 6 // name of parameter 3         Convert_add
1557         {
1558             Text [ en-US ] = "To unit";
1559         };
1561         String 7 // description of parameter 3  Convert_add
1562         {
1563             Text [ en-US ] = "Unit of measure for the result";
1564         };
1565     };
1567     Resource ANALYSIS_Amordegrc
1568     {
1569         String 1    // description Amordegrc
1570         {
1571             Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1572         };
1574         String 2 // name of parameter 1         Amordegrc
1575         {
1576             Text [ en-US ] = "Cost";
1577         };
1579         String 3 // description of parameter 1  Amordegrc
1580         {
1581             Text [ en-US ] = "Cost of the asset";
1582         };
1584         String 4 // name of parameter 2         Amordegrc
1585         {
1586             Text [ en-US ] = "Date purchased";
1587         };
1589         String 5 // description of parameter 2  Amordegrc
1590         {
1591             Text [ en-US ] = "Purchase date of the asset";
1592         };
1594         String 6 // name of parameter 3         Amordegrc
1595         {
1596             Text [ en-US ] = "First period";
1597         };
1599         String 7 // description of parameter 3  Amordegrc
1600         {
1601             Text [ en-US ] = "Date the first period ends";
1602         };
1604         String 8 // name of parameter 4         Amordegrc
1605         {
1606             Text [ en-US ] = "Salvage";
1607         };
1609         String 9 // description of parameter 4  Amordegrc
1610         {
1611             Text [ en-US ] = "Salvage value of an asset at the end of its life";
1612         };
1614         String 10 // name of parameter 5        Amordegrc
1615         {
1616             Text [ en-US ] = "Period";
1617         };
1619         String 11 // description of parameter 5 Amordegrc
1620         {
1621             Text [ en-US ] = "The period";
1622         };
1624         String 12 // name of parameter 6        Amordegrc
1625         {
1626             Text [ en-US ] = "Rate";
1627         };
1629         String 13 // description of parameter 6 Amordegrc
1630         {
1631             Text [ en-US ] = "The rate of depreciation";
1632         };
1634         String 14 // name of parameter 7        Amordegrc
1635         {
1636             Text [ en-US ] = "Basis";
1637         };
1639         String 15 // description of parameter 7 Amordegrc
1640         {
1641             Text [ en-US ] = "The year basis to be used";
1642         };
1643     };
1645     Resource ANALYSIS_Amorlinc
1646     {
1647         String 1    // description Amorlinc
1648         {
1649             Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1650         };
1652         String 2 // name of parameter 1         Amorlinc
1653         {
1654             Text [ en-US ] = "Cost";
1655         };
1657         String 3 // description of parameter 1  Amorlinc
1658         {
1659             Text [ en-US ] = "Cost of the asset";
1660         };
1662         String 4 // name of parameter 2         Amorlinc
1663         {
1664             Text [ en-US ] = "Date purchased";
1665         };
1667         String 5 // description of parameter 2  Amorlinc
1668         {
1669             Text [ en-US ] = "Purchase date of the asset";
1670         };
1672         String 6 // name of parameter 3         Amorlinc
1673         {
1674             Text [ en-US ] = "First period";
1675         };
1677         String 7 // description of parameter 3  Amorlinc
1678         {
1679             Text [ en-US ] = "The date the first period ends";
1680         };
1682         String 8 // name of parameter 4         Amorlinc
1683         {
1684             Text [ en-US ] = "Salvage";
1685         };
1687         String 9 // description of parameter 4  Amorlinc
1688         {
1689             Text [ en-US ] = "The salvage value of an asset at the end of its life";
1690         };
1692         String 10 // name of parameter 5        Amorlinc
1693         {
1694             Text [ en-US ] = "Period";
1695         };
1697         String 11 // description of parameter 5 Amorlinc
1698         {
1699             Text [ en-US ] = "The period";
1700         };
1702         String 12 // name of parameter 6        Amorlinc
1703         {
1704             Text [ en-US ] = "Rate";
1705         };
1707         String 13 // description of parameter 6 Amorlinc
1708         {
1709             Text [ en-US ] = "The rate of depreciation";
1710         };
1712         String 14 // name of parameter 7        Amorlinc
1713         {
1714             Text [ en-US ] = "Basis";
1715         };
1717         String 15 // description of parameter 7 Amorlinc
1718         {
1719             Text [ en-US ] = "The year basis to be used";
1720         };
1721     };
1723     Resource ANALYSIS_Accrint
1724     {
1725         String 1    // description Accrint
1726         {
1727             Text [ en-US ] = "Returns the accrued interest for a security that pays periodic interest";
1728         };
1730         String 2 // name of parameter 1         Accrint
1731         {
1732             Text [ en-US ] = "Issue";
1733         };
1735         String 3 // description of parameter 1  Accrint
1736         {
1737             Text [ en-US ] = "Issue date of the security";
1738         };
1740         String 4 // name of parameter 2         Accrint
1741         {
1742             Text [ en-US ] = "First interest";
1743         };
1745         String 5 // description of parameter 2  Accrint
1746         {
1747             Text [ en-US ] = "First interest date of the security";
1748         };
1750         String 6 // name of parameter 3         Accrint
1751         {
1752             Text [ en-US ] = "Settlement";
1753         };
1755         String 7 // description of parameter 3  Accrint
1756         {
1757             Text [ en-US ] = "The settlement";
1758         };
1760         String 8 // name of parameter 4         Accrint
1761         {
1762             Text [ en-US ] = "Rate";
1763         };
1765         String 9 // description of parameter 4  Accrint
1766         {
1767             Text [ en-US ] = "The rate";
1768         };
1770         String 10 // name of parameter 5        Accrint
1771         {
1772             Text [ en-US ] = "Par";
1773         };
1775         String 11 // description of parameter 5 Accrint
1776         {
1777             Text [ en-US ] = "The par value";
1778         };
1780         String 12 // name of parameter 6        Accrint
1781         {
1782             Text [ en-US ] = "Frequency";
1783         };
1785         String 13 // description of parameter 6 Accrint
1786         {
1787             Text [ en-US ] = "The frequency";
1788         };
1790         String 14 // name of parameter 7        Accrint
1791         {
1792             Text [ en-US ] = "Basis";
1793         };
1795         String 15 // description of parameter 7 Accrint
1796         {
1797             Text [ en-US ] = "The basis";
1798         };
1799     };
1801     Resource ANALYSIS_Accrintm
1802     {
1803         String 1    // description Accrintm
1804         {
1805             Text [ en-US ] = "Returns the accrued interest for a security that pays interest at maturity";
1806         };
1808         String 2 // name of parameter 1         Accrintm
1809         {
1810             Text [ en-US ] = "Issue";
1811         };
1813         String 3 // description of parameter 1  Accrintm
1814         {
1815             Text [ en-US ] = "The issue date";
1816         };
1818         String 4 // name of parameter 2         Accrintm
1819         {
1820             Text [ en-US ] = "Settlement";
1821         };
1823         String 5 // description of parameter 2  Accrintm
1824         {
1825             Text [ en-US ] = "The settlement";
1826         };
1828         String 6 // name of parameter 3         Accrintm
1829         {
1830             Text [ en-US ] = "Rate";
1831         };
1833         String 7 // description of parameter 3  Accrintm
1834         {
1835             Text [ en-US ] = "The rate";
1836         };
1838         String 8 // name of parameter 4         Accrintm
1839         {
1840             Text [ en-US ] = "Par";
1841         };
1843         String 9 // description of parameter 4  Accrintm
1844         {
1845             Text [ en-US ] = "The par value";
1846         };
1848         String 10 // name of parameter 5        Accrintm
1849         {
1850             Text [ en-US ] = "Basis";
1851         };
1853         String 11 // description of parameter 5 Accrintm
1854         {
1855             Text [ en-US ] = "The basis";
1856         };
1857     };
1859     Resource ANALYSIS_Received
1860     {
1861         String 1    // description Received
1862         {
1863             Text [ en-US ] = "Returns the amount paid out at maturity for a fully invested security";
1864         };
1866         String 2 // name of parameter 1         Received
1867         {
1868             Text [ en-US ] = "Settlement";
1869         };
1871         String 3 // description of parameter 1  Received
1872         {
1873             Text [ en-US ] = "The settlement";
1874         };
1876         String 4 // name of parameter 2         Received
1877         {
1878             Text [ en-US ] = "Maturity";
1879         };
1881         String 5 // description of parameter 2  Received
1882         {
1883             Text [ en-US ] = "The maturity";
1884         };
1886         String 6 // name of parameter 3         Received
1887         {
1888             Text [ en-US ] = "Investment";
1889         };
1891         String 7 // description of parameter 3  Received
1892         {
1893             Text [ en-US ] = "The investment";
1894         };
1896         String 8 // name of parameter 4         Received
1897         {
1898             Text [ en-US ] = "Discount";
1899         };
1901         String 9 // description of parameter 4  Received
1902         {
1903             Text [ en-US ] = "The discount";
1904         };
1906         String 10 // name of parameter 5        Received
1907         {
1908             Text [ en-US ] = "Basis";
1909         };
1911         String 11 // description of parameter 5 Received
1912         {
1913             Text [ en-US ] = "The basis";
1914         };
1915     };
1917     Resource ANALYSIS_Disc
1918     {
1919         String 1    // description Disc
1920         {
1921             Text [ en-US ] = "Returns the discount rate for a security";
1922         };
1924         String 2 // name of parameter 1         Disc
1925         {
1926             Text [ en-US ] = "Settlement";
1927         };
1929         String 3 // description of parameter 1  Disc
1930         {
1931             Text [ en-US ] = "The settlement";
1932         };
1934         String 4 // name of parameter 2         Disc
1935         {
1936             Text [ en-US ] = "Maturity";
1937         };
1939         String 5 // description of parameter 2  Disc
1940         {
1941             Text [ en-US ] = "The maturity";
1942         };
1944         String 6 // name of parameter 3         Disc
1945         {
1946             Text [ en-US ] = "Price";
1947         };
1949         String 7 // description of parameter 3  Disc
1950         {
1951             Text [ en-US ] = "The price";
1952         };
1954         String 8 // name of parameter 4         Disc
1955         {
1956             Text [ en-US ] = "Redemption";
1957         };
1959         String 9 // description of parameter 4  Disc
1960         {
1961             Text [ en-US ] = "The redemption value";
1962         };
1964         String 10 // name of parameter 5        Disc
1965         {
1966             Text [ en-US ] = "Basis";
1967         };
1969         String 11 // description of parameter 5 Disc
1970         {
1971             Text [ en-US ] = "The basis";
1972         };
1973     };
1975     Resource ANALYSIS_Duration
1976     {
1977         String 1    // description Duration
1978         {
1979             Text [ en-US ] = "Returns the annual Macaulay duration of a security with periodic interest payments";
1980         };
1982         String 2 // name of parameter 1         Duration
1983         {
1984             Text [ en-US ] = "Settlement";
1985         };
1987         String 3 // description of parameter 1  Duration
1988         {
1989             Text [ en-US ] = "The settlement";
1990         };
1992         String 4 // name of parameter 2         Duration
1993         {
1994             Text [ en-US ] = "Maturity";
1995         };
1997         String 5 // description of parameter 2  Duration
1998         {
1999             Text [ en-US ] = "The maturity";
2000         };
2002         String 6 // name of parameter 3         Duration
2003         {
2004             Text [ en-US ] = "Coupon";
2005         };
2007         String 7 // description of parameter 3  Duration
2008         {
2009             Text [ en-US ] = "The coupon rate";
2010         };
2012         String 8 // name of parameter 4         Duration
2013         {
2014             Text [ en-US ] = "Yield";
2015         };
2017         String 9 // description of parameter 4  Duration
2018         {
2019             Text [ en-US ] = "The yield";
2020         };
2022         String 10 // name of parameter 5        Duration
2023         {
2024             Text [ en-US ] = "Frequency";
2025         };
2027         String 11 // description of parameter 5 Duration
2028         {
2029             Text [ en-US ] = "The frequency";
2030         };
2032         String 12 // name of parameter 6        Duration
2033         {
2034             Text [ en-US ] = "Basis";
2035         };
2037         String 13 // description of parameter 6 Duration
2038         {
2039             Text [ en-US ] = "The basis";
2040         };
2041     };
2043     Resource ANALYSIS_Effect
2044     {
2045         String 1    // description Effect_add
2046         {
2047             Text [ en-US ] = "Returns the effective annual interest rate";
2048         };
2050         String 2 // name of parameter 1         Effect_add
2051         {
2052             Text [ en-US ] = "Nominal rate";
2053         };
2055         String 3 // description of parameter 1  Effect_add
2056         {
2057             Text [ en-US ] = "The nominal rate";
2058         };
2060         String 4 // name of parameter 2         Effect_add
2061         {
2062             Text [ en-US ] = "Npery";
2063         };
2065         String 5 // description of parameter 2  Effect_add
2066         {
2067             Text [ en-US ] = "The periods";
2068         };
2069     };
2071     Resource ANALYSIS_Cumprinc
2072     {
2073         String 1    // description Cumprinc_add
2074         {
2075             Text [ en-US ] = "Returns the cumulative principal on a loan to be paid between two periods";
2076         };
2078         String 2 // name of parameter 1         Cumprinc_add
2079         {
2080             Text [ en-US ] = "Rate";
2081         };
2083         String 3 // description of parameter 1  Cumprinc_add
2084         {
2085             Text [ en-US ] = "The rate";
2086         };
2088         String 4 // name of parameter 2         Cumprinc_add
2089         {
2090             Text [ en-US ] = "Nper";
2091         };
2093         String 5 // description of parameter 2  Cumprinc_add
2094         {
2095             Text [ en-US ] = "Number of payment periods";
2096         };
2098         String 6 // name of parameter 3         Cumprinc_add
2099         {
2100             Text [ en-US ] = "Pv";
2101         };
2103         String 7 // description of parameter 3  Cumprinc_add
2104         {
2105             Text [ en-US ] = "The present value";
2106         };
2108         String 8 // name of parameter 4         Cumprinc_add
2109         {
2110             Text [ en-US ] = "Start period";
2111         };
2113         String 9 // description of parameter 4  Cumprinc_add
2114         {
2115             Text [ en-US ] = "The start period";
2116         };
2118         String 10 // name of parameter 5        Cumprinc_add
2119         {
2120             Text [ en-US ] = "End period";
2121         };
2123         String 11 // description of parameter 5 Cumprinc_add
2124         {
2125             Text [ en-US ] = "The end period";
2126         };
2128         String 12 // name of parameter 6        Cumprinc_add
2129         {
2130             Text [ en-US ] = "Type";
2131         };
2133         String 13 // description of parameter 6 Cumprinc_add
2134         {
2135             Text [ en-US ] = "The type of maturity";
2136         };
2137     };
2139     Resource ANALYSIS_Cumipmt
2140     {
2141         String 1    // description Cumipmt_add
2142         {
2143             Text [ en-US ] = "Returns the cumulative interest to be paid between two periods";
2144         };
2146         String 2 // name of parameter 1         Cumipmt_add
2147         {
2148             Text [ en-US ] = "Rate";
2149         };
2151         String 3 // description of parameter 1  Cumipmt_add
2152         {
2153             Text [ en-US ] = "The rate";
2154         };
2156         String 4 // name of parameter 2         Cumipmt_add
2157         {
2158             Text [ en-US ] = "Nper";
2159         };
2161         String 5 // description of parameter 2  Cumipmt_add
2162         {
2163             Text [ en-US ] = "Number of payment periods";
2164         };
2166         String 6 // name of parameter 3         Cumipmt_add
2167         {
2168             Text [ en-US ] = "Pv";
2169         };
2171         String 7 // description of parameter 3  Cumipmt_add
2172         {
2173             Text [ en-US ] = "The present value";
2174         };
2176         String 8 // name of parameter 4         Cumipmt_add
2177         {
2178             Text [ en-US ] = "Start period";
2179         };
2181         String 9 // description of parameter 4  Cumipmt_add
2182         {
2183             Text [ en-US ] = "The start period";
2184         };
2186         String 10 // name of parameter 5        Cumipmt_add
2187         {
2188             Text [ en-US ] = "End period";
2189         };
2191         String 11 // description of parameter 5 Cumipmt_add
2192         {
2193             Text [ en-US ] = "The end period";
2194         };
2196         String 12 // name of parameter 6        Cumipmt_add
2197         {
2198             Text [ en-US ] = "Type";
2199         };
2201         String 13 // description of parameter 6 Cumipmt_add
2202         {
2203             Text [ en-US ] = "The type of maturity";
2204         };
2205     };
2207     Resource ANALYSIS_Price
2208     {
2209         String 1    // description Price
2210         {
2211             Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays periodic interest";
2212         };
2214         String 2 // name of parameter 1         Price
2215         {
2216             Text [ en-US ] = "Settlement";
2217         };
2219         String 3 // description of parameter 1  Price
2220         {
2221             Text [ en-US ] = "The settlement";
2222         };
2224         String 4 // name of parameter 2         Price
2225         {
2226             Text [ en-US ] = "Maturity";
2227         };
2229         String 5 // description of parameter 2  Price
2230         {
2231             Text [ en-US ] = "The maturity";
2232         };
2234         String 6 // name of parameter 3         Price
2235         {
2236             Text [ en-US ] = "Rate";
2237         };
2239         String 7 // description of parameter 3  Price
2240         {
2241             Text [ en-US ] = "The rate";
2242         };
2244         String 8 // name of parameter 4         Price
2245         {
2246             Text [ en-US ] = "Yield";
2247         };
2249         String 9 // description of parameter 4  Price
2250         {
2251             Text [ en-US ] = "The yield";
2252         };
2254         String 10 // name of parameter 5        Price
2255         {
2256             Text [ en-US ] = "Redemption";
2257         };
2259         String 11 // description of parameter 5 Price
2260         {
2261             Text [ en-US ] = "The redemption value";
2262         };
2264         String 12 // name of parameter 6        Price
2265         {
2266             Text [ en-US ] = "Frequency";
2267         };
2269         String 13 // description of parameter 6 Price
2270         {
2271             Text [ en-US ] = "The frequency";
2272         };
2274         String 14 // name of parameter 7        Price
2275         {
2276             Text [ en-US ] = "Basis";
2277         };
2279         String 15 // description of parameter 7 Price
2280         {
2281             Text [ en-US ] = "The basis";
2282         };
2283     };
2285     Resource ANALYSIS_Pricedisc
2286     {
2287         String 1    // description Pricedisc
2288         {
2289             Text [ en-US ] = "Returns the price per 100 currency units face value of a discounted security";
2290         };
2292         String 2 // name of parameter 1         Pricedisc
2293         {
2294             Text [ en-US ] = "Settlement";
2295         };
2297         String 3 // description of parameter 1  Pricedisc
2298         {
2299             Text [ en-US ] = "The settlement";
2300         };
2302         String 4 // name of parameter 2         Pricedisc
2303         {
2304             Text [ en-US ] = "Maturity";
2305         };
2307         String 5 // description of parameter 2  Pricedisc
2308         {
2309             Text [ en-US ] = "The maturity";
2310         };
2312         String 6 // name of parameter 3         Pricedisc
2313         {
2314             Text [ en-US ] = "Discount";
2315         };
2317         String 7 // description of parameter 3  Pricedisc
2318         {
2319             Text [ en-US ] = "The discount";
2320         };
2322         String 8 // name of parameter 4         Pricedisc
2323         {
2324             Text [ en-US ] = "Redemption";
2325         };
2327         String 9 // description of parameter 4  Pricedisc
2328         {
2329             Text [ en-US ] = "The redemption value";
2330         };
2332         String 10 // name of parameter 5        Pricedisc
2333         {
2334             Text [ en-US ] = "Basis";
2335         };
2337         String 11 // description of parameter 5 Pricedisc
2338         {
2339             Text [ en-US ] = "The basis";
2340         };
2341     };
2343     Resource ANALYSIS_Pricemat
2344     {
2345         String 1    // description Pricemat
2346         {
2347             Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays interest at maturity";
2348         };
2350         String 2 // name of parameter 1         Pricemat
2351         {
2352             Text [ en-US ] = "Settlement";
2353         };
2355         String 3 // description of parameter 1  Pricemat
2356         {
2357             Text [ en-US ] = "The settlement";
2358         };
2360         String 4 // name of parameter 2         Pricemat
2361         {
2362             Text [ en-US ] = "Maturity";
2363         };
2365         String 5 // description of parameter 2  Pricemat
2366         {
2367             Text [ en-US ] = "The maturity";
2368         };
2370         String 6 // name of parameter 3         Pricemat
2371         {
2372             Text [ en-US ] = "Issue";
2373         };
2375         String 7 // description of parameter 3  Pricemat
2376         {
2377             Text [ en-US ] = "The issue date";
2378         };
2380         String 8 // name of parameter 4         Pricemat
2381         {
2382             Text [ en-US ] = "Rate";
2383         };
2385         String 9 // description of parameter 4  Pricemat
2386         {
2387             Text [ en-US ] = "The rate";
2388         };
2390         String 10 // name of parameter 5        Pricemat
2391         {
2392             Text [ en-US ] = "Yield";
2393         };
2395         String 11 // description of parameter 5 Pricemat
2396         {
2397             Text [ en-US ] = "The yield";
2398         };
2400         String 12 // name of parameter 6        Pricemat
2401         {
2402             Text [ en-US ] = "Basis";
2403         };
2405         String 13 // description of parameter 6 Pricemat
2406         {
2407             Text [ en-US ] = "The basis";
2408         };
2409     };
2411     Resource ANALYSIS_Mduration
2412     {
2413         String 1    // description Mduration
2414         {
2415             Text [ en-US ] = "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units";
2416         };
2418         String 2 // name of parameter 1         Mduration
2419         {
2420             Text [ en-US ] = "Settlement";
2421         };
2423         String 3 // description of parameter 1  Mduration
2424         {
2425             Text [ en-US ] = "The settlement";
2426         };
2428         String 4 // name of parameter 2         Mduration
2429         {
2430             Text [ en-US ] = "Maturity";
2431         };
2433         String 5 // description of parameter 2  Mduration
2434         {
2435             Text [ en-US ] = "The maturity";
2436         };
2438         String 6 // name of parameter 3         Mduration
2439         {
2440             Text [ en-US ] = "Coupon";
2441         };
2443         String 7 // description of parameter 3  Mduration
2444         {
2445             Text [ en-US ] = "The coupon rate";
2446         };
2448         String 8 // name of parameter 4         Mduration
2449         {
2450             Text [ en-US ] = "Yield";
2451         };
2453         String 9 // description of parameter 4  Mduration
2454         {
2455             Text [ en-US ] = "The yield";
2456         };
2458         String 10 // name of parameter 5        Mduration
2459         {
2460             Text [ en-US ] = "Frequency";
2461         };
2463         String 11 // description of parameter 5 Mduration
2464         {
2465             Text [ en-US ] = "The frequency";
2466         };
2468         String 12 // name of parameter 6        Mduration
2469         {
2470             Text [ en-US ] = "Basis";
2471         };
2473         String 13 // description of parameter 6 Mduration
2474         {
2475             Text [ en-US ] = "The basis";
2476         };
2477     };
2479     Resource ANALYSIS_Nominal
2480     {
2481         String 1    // description Nominal_add
2482         {
2483             Text [ en-US ] = "Returns the annual nominal interest rate";
2484         };
2486         String 2 // name of parameter 1         Nominal_add
2487         {
2488             Text [ en-US ] = "Effective rate";
2489         };
2491         String 3 // description of parameter 1  Nominal_add
2492         {
2493             Text [ en-US ] = "The effective interest rate";
2494         };
2496         String 4 // name of parameter 2         Nominal_add
2497         {
2498             Text [ en-US ] = "Npery";
2499         };
2501         String 5 // description of parameter 2  Nominal_add
2502         {
2503             Text [ en-US ] = "The periods";
2504         };
2505     };
2507     Resource ANALYSIS_Dollarfr
2508     {
2509         String 1    // description Dollarfr
2510         {
2511             Text [ en-US ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
2512         };
2514         String 2 // name of parameter 1         Dollarfr
2515         {
2516             Text [ en-US ] = "Decimal dollar";
2517         };
2519         String 3 // description of parameter 1  Dollarfr
2520         {
2521             Text [ en-US ] = "The decimal number";
2522         };
2524         String 4 // name of parameter 2         Dollarfr
2525         {
2526             Text [ en-US ] = "Fraction";
2527         };
2529         String 5 // description of parameter 2  Dollarfr
2530         {
2531             Text [ en-US ] = "The divisor";
2532         };
2533     };
2535     Resource ANALYSIS_Dollarde
2536     {
2537         String 1    // description Dollarde
2538         {
2539             Text [ en-US ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
2540         };
2542         String 2 // name of parameter 1         Dollarde
2543         {
2544             Text [ en-US ] = "Fractional dollar";
2545         };
2547         String 3 // description of parameter 1  Dollarde
2548         {
2549             Text [ en-US ] = "The number as a fraction";
2550         };
2552         String 4 // name of parameter 2         Dollarde
2553         {
2554             Text [ en-US ] = "Fraction";
2555         };
2557         String 5 // description of parameter 2  Dollarde
2558         {
2559             Text [ en-US ] = "The divisor";
2560         };
2561     };
2563     Resource ANALYSIS_Yield
2564     {
2565         String 1    // description Yield
2566         {
2567             Text [ en-US ] = "Returns the yield on a security that pays periodic interest";
2568         };
2570         String 2 // name of parameter 1         Yield
2571         {
2572             Text [ en-US ] = "Settlement";
2573         };
2575         String 3 // description of parameter 1  Yield
2576         {
2577             Text [ en-US ] = "The settlement";
2578         };
2580         String 4 // name of parameter 2         Yield
2581         {
2582             Text [ en-US ] = "Maturity";
2583         };
2585         String 5 // description of parameter 2  Yield
2586         {
2587             Text [ en-US ] = "The maturity";
2588         };
2590         String 6 // name of parameter 3         Yield
2591         {
2592             Text [ en-US ] = "Rate";
2593         };
2595         String 7 // description of parameter 3  Yield
2596         {
2597             Text [ en-US ] = "The rate";
2598         };
2600         String 8 // name of parameter 4         Yield
2601         {
2602             Text [ en-US ] = "Price";
2603         };
2605         String 9 // description of parameter 4  Yield
2606         {
2607             Text [ en-US ] = "The price";
2608         };
2610         String 10 // name of parameter 5        Yield
2611         {
2612             Text [ en-US ] = "Redemption";
2613         };
2615         String 11 // description of parameter 5 Yield
2616         {
2617             Text [ en-US ] = "The redemption value";
2618         };
2620         String 12 // name of parameter 6        Yield
2621         {
2622             Text [ en-US ] = "Frequency";
2623         };
2625         String 13 // description of parameter 6 Yield
2626         {
2627             Text [ en-US ] = "The frequency";
2628         };
2630         String 14 // name of parameter 7        Yield
2631         {
2632             Text [ en-US ] = "Basis";
2633         };
2635         String 15 // description of parameter 7 Yield
2636         {
2637             Text [ en-US ] = "The basis";
2638         };
2639     };
2641     Resource ANALYSIS_Yielddisc
2642     {
2643         String 1    // description Yielddisc
2644         {
2645             Text [ en-US ] = "Returns the annual yield for a discounted security";
2646         };
2648         String 2 // name of parameter 1         Yielddisc
2649         {
2650             Text [ en-US ] = "Settlement";
2651         };
2653         String 3 // description of parameter 1  Yielddisc
2654         {
2655             Text [ en-US ] = "The settlement";
2656         };
2658         String 4 // name of parameter 2         Yielddisc
2659         {
2660             Text [ en-US ] = "Maturity";
2661         };
2663         String 5 // description of parameter 2  Yielddisc
2664         {
2665             Text [ en-US ] = "The maturity";
2666         };
2668         String 6 // name of parameter 3         Yielddisc
2669         {
2670             Text [ en-US ] = "Price";
2671         };
2673         String 7 // description of parameter 3  Yielddisc
2674         {
2675             Text [ en-US ] = "The price";
2676         };
2678         String 8 // name of parameter 4         Yielddisc
2679         {
2680             Text [ en-US ] = "Redemption";
2681         };
2683         String 9 // description of parameter 4  Yielddisc
2684         {
2685             Text [ en-US ] = "The redemption value";
2686         };
2688         String 10 // name of parameter 5        Yielddisc
2689         {
2690             Text [ en-US ] = "Basis";
2691         };
2693         String 11 // description of parameter 5 Yielddisc
2694         {
2695             Text [ en-US ] = "The basis";
2696         };
2697     };
2699     Resource ANALYSIS_Yieldmat
2700     {
2701         String 1    // description Yieldmat
2702         {
2703             Text [ en-US ] = "Returns the annual yield of a security that pays interest at maturity";
2704         };
2706         String 2 // name of parameter 1         Yieldmat
2707         {
2708             Text [ en-US ] = "Settlement";
2709         };
2711         String 3 // description of parameter 1  Yieldmat
2712         {
2713             Text [ en-US ] = "The settlement";
2714         };
2716         String 4 // name of parameter 2         Yieldmat
2717         {
2718             Text [ en-US ] = "Maturity";
2719         };
2721         String 5 // description of parameter 2  Yieldmat
2722         {
2723             Text [ en-US ] = "The maturity";
2724         };
2726         String 6 // name of parameter 3         Yieldmat
2727         {
2728             Text [ en-US ] = "Issue";
2729         };
2731         String 7 // description of parameter 3  Yieldmat
2732         {
2733             Text [ en-US ] = "The issue date";
2734         };
2736         String 8 // name of parameter 4         Yieldmat
2737         {
2738             Text [ en-US ] = "Rate";
2739         };
2741         String 9 // description of parameter 4  Yieldmat
2742         {
2743             Text [ en-US ] = "The rate";
2744         };
2746         String 10 // name of parameter 5        Yieldmat
2747         {
2748             Text [ en-US ] = "Price";
2749         };
2751         String 11 // description of parameter 5 Yieldmat
2752         {
2753             Text [ en-US ] = "The price";
2754         };
2756         String 12 // name of parameter 6        Yieldmat
2757         {
2758             Text [ en-US ] = "Basis";
2759         };
2761         String 13 // description of parameter 6 Yieldmat
2762         {
2763             Text [ en-US ] = "The basis";
2764         };
2765     };
2767     Resource ANALYSIS_Tbilleq
2768     {
2769         String 1    // description Tbilleq
2770         {
2771             Text [ en-US ] = "Returns the bond-equivalent yield for a treasury bill";
2772         };
2774         String 2 // name of parameter 1         Tbilleq
2775         {
2776             Text [ en-US ] = "Settlement";
2777         };
2779         String 3 // description of parameter 1  Tbilleq
2780         {
2781             Text [ en-US ] = "The settlement";
2782         };
2784         String 4 // name of parameter 2         Tbilleq
2785         {
2786             Text [ en-US ] = "Maturity";
2787         };
2789         String 5 // description of parameter 2  Tbilleq
2790         {
2791             Text [ en-US ] = "The maturity";
2792         };
2794         String 6 // name of parameter 3         Tbilleq
2795         {
2796             Text [ en-US ] = "Discount";
2797         };
2799         String 7 // description of parameter 3  Tbilleq
2800         {
2801             Text [ en-US ] = "The discount rate";
2802         };
2803     };
2805     Resource ANALYSIS_Tbillprice
2806     {
2807         String 1    // description Tbillprice
2808         {
2809             Text [ en-US ] = "Returns the price of 100 currency units face value for a treasury bill";
2810         };
2812         String 2 // name of parameter 1         Tbillprice
2813         {
2814             Text [ en-US ] = "Settlement";
2815         };
2817         String 3 // description of parameter 1  Tbillprice
2818         {
2819             Text [ en-US ] = "The settlement";
2820         };
2822         String 4 // name of parameter 2         Tbillprice
2823         {
2824             Text [ en-US ] = "Maturity";
2825         };
2827         String 5 // description of parameter 2  Tbillprice
2828         {
2829             Text [ en-US ] = "The maturity";
2830         };
2832         String 6 // name of parameter 3         Tbillprice
2833         {
2834             Text [ en-US ] = "Discount";
2835         };
2837         String 7 // description of parameter 3  Tbillprice
2838         {
2839             Text [ en-US ] = "The discount rate";
2840         };
2841     };
2843     Resource ANALYSIS_Tbillyield
2844     {
2845         String 1    // description Tbillyield
2846         {
2847             Text [ en-US ] = "Returns the yield for a treasury bill";
2848         };
2850         String 2 // name of parameter 1         Tbillyield
2851         {
2852             Text [ en-US ] = "Settlement";
2853         };
2855         String 3 // description of parameter 1  Tbillyield
2856         {
2857             Text [ en-US ] = "The settlement";
2858         };
2860         String 4 // name of parameter 2         Tbillyield
2861         {
2862             Text [ en-US ] = "Maturity";
2863         };
2865         String 5 // description of parameter 2  Tbillyield
2866         {
2867             Text [ en-US ] = "The maturity";
2868         };
2870         String 6 // name of parameter 3         Tbillyield
2871         {
2872             Text [ en-US ] = "Price";
2873         };
2875         String 7 // description of parameter 3  Tbillyield
2876         {
2877             Text [ en-US ] = "The price";
2878         };
2879     };
2881     Resource ANALYSIS_Oddfprice
2882     {
2883         String 1    // description Oddfprice
2884         {
2885             Text [ en-US ] = "Returns the price per $100 face value of a security with an odd first period";
2886         };
2888         String 2 // name of parameter 1         Oddfprice
2889         {
2890             Text [ en-US ] = "Settlement";
2891         };
2893         String 3 // description of parameter 1  Oddfprice
2894         {
2895             Text [ en-US ] = "The settlement";
2896         };
2898         String 4 // name of parameter 2         Oddfprice
2899         {
2900             Text [ en-US ] = "Maturity";
2901         };
2903         String 5 // description of parameter 2  Oddfprice
2904         {
2905             Text [ en-US ] = "The maturity";
2906         };
2908         String 6 // name of parameter 3         Oddfprice
2909         {
2910             Text [ en-US ] = "Issue";
2911         };
2913         String 7 // description of parameter 3  Oddfprice
2914         {
2915             Text [ en-US ] = "The issue date";
2916         };
2918         String 8 // name of parameter 4         Oddfprice
2919         {
2920             Text [ en-US ] = "First coupon";
2921         };
2923         String 9 // description of parameter 4  Oddfprice
2924         {
2925             Text [ en-US ] = "The first coupon date";
2926         };
2928         String 10 // name of parameter 5        Oddfprice
2929         {
2930             Text [ en-US ] = "Rate";
2931         };
2933         String 11 // description of parameter 5 Oddfprice
2934         {
2935             Text [ en-US ] = "The rate";
2936         };
2938         String 12 // name of parameter 6        Oddfprice
2939         {
2940             Text [ en-US ] = "Yield";
2941         };
2943         String 13 // description of parameter 6 Oddfprice
2944         {
2945             Text [ en-US ] = "The yield";
2946         };
2948         String 14 // name of parameter 7        Oddfprice
2949         {
2950             Text [ en-US ] = "Redemption";
2951         };
2953         String 15 // description of parameter 7 Oddfprice
2954         {
2955             Text [ en-US ] = "The redemption value";
2956         };
2958         String 16 // name of parameter 8        Oddfprice
2959         {
2960             Text [ en-US ] = "Frequency";
2961         };
2963         String 17 // description of parameter 8 Oddfprice
2964         {
2965             Text [ en-US ] = "The frequency";
2966         };
2968         String 18 // name of parameter 9        Oddfprice
2969         {
2970             Text [ en-US ] = "Basis";
2971         };
2973         String 19 // description of parameter 9 Oddfprice
2974         {
2975             Text [ en-US ] = "The basis";
2976         };
2977     };
2979     Resource ANALYSIS_Oddfyield
2980     {
2981         String 1    // description Oddfyield
2982         {
2983             Text [ en-US ] = "Returns the yield of a security with an odd first period";
2984         };
2986         String 2 // name of parameter 1         Oddfyield
2987         {
2988             Text [ en-US ] = "Settlement";
2989         };
2991         String 3 // description of parameter 1  Oddfyield
2992         {
2993             Text [ en-US ] = "The settlement";
2994         };
2996         String 4 // name of parameter 2         Oddfyield
2997         {
2998             Text [ en-US ] = "Maturity";
2999         };
3001         String 5 // description of parameter 2  Oddfyield
3002         {
3003             Text [ en-US ] = "The maturity";
3004         };
3006         String 6 // name of parameter 3         Oddfyield
3007         {
3008             Text [ en-US ] = "Issue";
3009         };
3011         String 7 // description of parameter 3  Oddfyield
3012         {
3013             Text [ en-US ] = "The issue date";
3014         };
3016         String 8 // name of parameter 4         Oddfyield
3017         {
3018             Text [ en-US ] = "First coupon";
3019         };
3021         String 9 // description of parameter 4  Oddfyield
3022         {
3023             Text [ en-US ] = "The first coupon date";
3024         };
3026         String 10 // name of parameter 5        Oddfyield
3027         {
3028             Text [ en-US ] = "Rate";
3029         };
3031         String 11 // description of parameter 5 Oddfyield
3032         {
3033             Text [ en-US ] = "The rate";
3034         };
3036         String 12 // name of parameter 6        Oddfyield
3037         {
3038             Text [ en-US ] = "Price";
3039         };
3041         String 13 // description of parameter 6 Oddfyield
3042         {
3043             Text [ en-US ] = "The price";
3044         };
3046         String 14 // name of parameter 7        Oddfyield
3047         {
3048             Text [ en-US ] = "Redemption";
3049         };
3051         String 15 // description of parameter 7 Oddfyield
3052         {
3053             Text [ en-US ] = "The redemption value";
3054         };
3056         String 16 // name of parameter 8        Oddfyield
3057         {
3058             Text [ en-US ] = "Frequency";
3059         };
3061         String 17 // description of parameter 8 Oddfyield
3062         {
3063             Text [ en-US ] = "The frequency";
3064         };
3066         String 18 // name of parameter 9        Oddfyield
3067         {
3068             Text [ en-US ] = "Basis";
3069         };
3071         String 19 // description of parameter 9 Oddfyield
3072         {
3073             Text [ en-US ] = "The basis";
3074         };
3075     };
3077     Resource ANALYSIS_Oddlprice
3078     {
3079         String 1    // description Oddlprice
3080         {
3081             Text [ en-US ] = "Returns the price per $100 face value of a security with an odd last period";
3082         };
3084         String 2 // name of parameter 1         Oddlprice
3085         {
3086             Text [ en-US ] = "Settlement";
3087         };
3089         String 3 // description of parameter 1  Oddlprice
3090         {
3091             Text [ en-US ] = "The settlement";
3092         };
3094         String 4 // name of parameter 2         Oddlprice
3095         {
3096             Text [ en-US ] = "Maturity";
3097         };
3099         String 5 // description of parameter 2  Oddlprice
3100         {
3101             Text [ en-US ] = "The maturity";
3102         };
3104         String 6 // name of parameter 3         Oddlprice
3105         {
3106             Text [ en-US ] = "Last interest";
3107         };
3109         String 7 // description of parameter 3  Oddlprice
3110         {
3111             Text [ en-US ] = "The last interest date";
3112         };
3114         String 8 // name of parameter 4         Oddlprice
3115         {
3116             Text [ en-US ] = "Rate";
3117         };
3119         String 9 // description of parameter 4  Oddlprice
3120         {
3121             Text [ en-US ] = "The rate";
3122         };
3124         String 10 // name of parameter 5        Oddlprice
3125         {
3126             Text [ en-US ] = "Yield";
3127         };
3129         String 11 // description of parameter 5 Oddlprice
3130         {
3131             Text [ en-US ] = "The yield";
3132         };
3134         String 12 // name of parameter 6        Oddlprice
3135         {
3136             Text [ en-US ] = "Redemption";
3137         };
3139         String 13 // description of parameter 6 Oddlprice
3140         {
3141             Text [ en-US ] = "The redemption value";
3142         };
3144         String 14 // name of parameter 7        Oddlprice
3145         {
3146             Text [ en-US ] = "Frequency";
3147         };
3149         String 15 // description of parameter 7 Oddlprice
3150         {
3151             Text [ en-US ] = "The frequency";
3152         };
3154         String 16 // name of parameter 8        Oddlprice
3155         {
3156             Text [ en-US ] = "Basis";
3157         };
3159         String 17 // description of parameter 8 Oddlprice
3160         {
3161             Text [ en-US ] = "The basis";
3162         };
3163     };
3165     Resource ANALYSIS_Oddlyield
3166     {
3167         String 1    // description Oddlyield
3168         {
3169             Text [ en-US ] = "Returns the yield of a security with an odd last period";
3170         };
3172         String 2 // name of parameter 1         Oddlyield
3173         {
3174             Text [ en-US ] = "Settlement";
3175         };
3177         String 3 // description of parameter 1  Oddlyield
3178         {
3179             Text [ en-US ] = "The settlement";
3180         };
3182         String 4 // name of parameter 2         Oddlyield
3183         {
3184             Text [ en-US ] = "Maturity";
3185         };
3187         String 5 // description of parameter 2  Oddlyield
3188         {
3189             Text [ en-US ] = "The maturity";
3190         };
3192         String 6 // name of parameter 3         Oddlyield
3193         {
3194             Text [ en-US ] = "Last interest";
3195         };
3197         String 7 // description of parameter 3  Oddlyield
3198         {
3199             Text [ en-US ] = "The last interest date";
3200         };
3202         String 8 // name of parameter 4         Oddlyield
3203         {
3204             Text [ en-US ] = "Rate";
3205         };
3207         String 9 // description of parameter 4  Oddlyield
3208         {
3209             Text [ en-US ] = "The rate";
3210         };
3212         String 10 // name of parameter 5        Oddlyield
3213         {
3214             Text [ en-US ] = "Price";
3215         };
3217         String 11 // description of parameter 5 Oddlyield
3218         {
3219             Text [ en-US ] = "The price";
3220         };
3222         String 12 // name of parameter 6        Oddlyield
3223         {
3224             Text [ en-US ] = "Redemption";
3225         };
3227         String 13 // description of parameter 6 Oddlyield
3228         {
3229             Text [ en-US ] = "The redemption value";
3230         };
3232         String 14 // name of parameter 7        Oddlyield
3233         {
3234             Text [ en-US ] = "Frequency";
3235         };
3237         String 15 // description of parameter 7 Oddlyield
3238         {
3239             Text [ en-US ] = "The frequency";
3240         };
3242         String 16 // name of parameter 8        Oddlyield
3243         {
3244             Text [ en-US ] = "Basis";
3245         };
3247         String 17 // description of parameter 8 Oddlyield
3248         {
3249             Text [ en-US ] = "The basis";
3250         };
3251     };
3253     Resource ANALYSIS_Xirr
3254     {
3255         String 1    // description Xirr
3256         {
3257             Text [ en-US ] = "Returns the internal rate of return for a non-periodic schedule of payments";
3258         };
3260         String 2 // name of parameter 1         Xirr
3261         {
3262             Text [ en-US ] = "Values";
3263         };
3265         String 3 // description of parameter 1  Xirr
3266         {
3267             Text [ en-US ] = "The values";
3268         };
3270         String 4 // name of parameter 2         Xirr
3271         {
3272             Text [ en-US ] = "Dates";
3273         };
3275         String 5 // description of parameter 2  Xirr
3276         {
3277             Text [ en-US ] = "The dates";
3278         };
3280         String 6 // name of parameter 3         Xirr
3281         {
3282             Text [ en-US ] = "Guess";
3283         };
3285         String 7 // description of parameter 3  Xirr
3286         {
3287             Text [ en-US ] = "The guess";
3288         };
3289     };
3291     Resource ANALYSIS_Xnpv
3292     {
3293         String 1    // description Xnpv
3294         {
3295             Text [ en-US ] = "Returns the net present value for a non-periodic schedule of payments";
3296         };
3298         String 2 // name of parameter 1         Xnpv
3299         {
3300             Text [ en-US ] = "Rate";
3301         };
3303         String 3 // description of parameter 1  Xnpv
3304         {
3305             Text [ en-US ] = "The rate";
3306         };
3308         String 4 // name of parameter 2         Xnpv
3309         {
3310             Text [ en-US ] = "Values";
3311         };
3313         String 5 // description of parameter 2  Xnpv
3314         {
3315             Text [ en-US ] = "The values";
3316         };
3318         String 6 // name of parameter 3         Xnpv
3319         {
3320             Text [ en-US ] = "Dates";
3321         };
3323         String 7 // description of parameter 3  Xnpv
3324         {
3325             Text [ en-US ] = "The dates";
3326         };
3327     };
3329     Resource ANALYSIS_Intrate
3330     {
3331         String 1    // description Intrate
3332         {
3333             Text [ en-US ] = "Returns the interest rate for a fully invested security";
3334         };
3336         String 2 // name of parameter 1         Intrate
3337         {
3338             Text [ en-US ] = "Settlement";
3339         };
3341         String 3 // description of parameter 1  Intrate
3342         {
3343             Text [ en-US ] = "The settlement";
3344         };
3346         String 4 // name of parameter 2         Intrate
3347         {
3348             Text [ en-US ] = "Maturity";
3349         };
3351         String 5 // description of parameter 2  Intrate
3352         {
3353             Text [ en-US ] = "The maturity";
3354         };
3356         String 6 // name of parameter 3         Intrate
3357         {
3358             Text [ en-US ] = "Investment";
3359         };
3361         String 7 // description of parameter 3  Intrate
3362         {
3363             Text [ en-US ] = "The investment";
3364         };
3366         String 8 // name of parameter 4         Intrate
3367         {
3368             Text [ en-US ] = "Redemption";
3369         };
3371         String 9 // description of parameter 4  Intrate
3372         {
3373             Text [ en-US ] = "The redemption value";
3374         };
3376         String 10 // name of parameter 5        Intrate
3377         {
3378             Text [ en-US ] = "Basis";
3379         };
3381         String 11 // description of parameter 5 Intrate
3382         {
3383             Text [ en-US ] = "The basis";
3384         };
3385     };
3387     Resource ANALYSIS_Coupncd
3388     {
3389         String 1    // description Coupncd
3390         {
3391             Text [ en-US ] = "Returns the first coupon date after the settlement date";
3392         };
3394         String 2 // name of parameter 1         Coupncd
3395         {
3396             Text [ en-US ] = "Settlement";
3397         };
3399         String 3 // description of parameter 1  Coupncd
3400         {
3401             Text [ en-US ] = "The settlement";
3402         };
3404         String 4 // name of parameter 2         Coupncd
3405         {
3406             Text [ en-US ] = "Maturity";
3407         };
3409         String 5 // description of parameter 2  Coupncd
3410         {
3411             Text [ en-US ] = "The maturity";
3412         };
3414         String 6 // name of parameter 3         Coupncd
3415         {
3416             Text [ en-US ] = "Frequency";
3417         };
3419         String 7 // description of parameter 3  Coupncd
3420         {
3421             Text [ en-US ] = "The frequency";
3422         };
3424         String 8 // name of parameter 4         Coupncd
3425         {
3426             Text [ en-US ] = "Basis";
3427         };
3429         String 9 // description of parameter 4  Coupncd
3430         {
3431             Text [ en-US ] = "The basis";
3432         };
3433     };
3435     Resource ANALYSIS_Coupdays
3436     {
3437         String 1    // description Coupdays
3438         {
3439             Text [ en-US ] = "Returns the number of days in the coupon period containing the settlement date";
3440         };
3442         String 2 // name of parameter 1         Coupdays
3443         {
3444             Text [ en-US ] = "Settlement";
3445         };
3447         String 3 // description of parameter 1  Coupdays
3448         {
3449             Text [ en-US ] = "The settlement";
3450         };
3452         String 4 // name of parameter 2         Coupdays
3453         {
3454             Text [ en-US ] = "Maturity";
3455         };
3457         String 5 // description of parameter 2  Coupdays
3458         {
3459             Text [ en-US ] = "The maturity";
3460         };
3462         String 6 // name of parameter 3         Coupdays
3463         {
3464             Text [ en-US ] = "Frequency";
3465         };
3467         String 7 // description of parameter 3  Coupdays
3468         {
3469             Text [ en-US ] = "The frequency";
3470         };
3472         String 8 // name of parameter 4         Coupdays
3473         {
3474             Text [ en-US ] = "Basis";
3475         };
3477         String 9 // description of parameter 4  Coupdays
3478         {
3479             Text [ en-US ] = "The basis";
3480         };
3481     };
3483     Resource ANALYSIS_Coupdaysnc
3484     {
3485         String 1    // description Coupdaysnc
3486         {
3487             Text [ en-US ] = "Returns the number of days from the settlement date to the next coupon date";
3488         };
3490         String 2 // name of parameter 1         Coupdaysnc
3491         {
3492             Text [ en-US ] = "Settlement";
3493         };
3495         String 3 // description of parameter 1  Coupdaysnc
3496         {
3497             Text [ en-US ] = "The settlement";
3498         };
3500         String 4 // name of parameter 2         Coupdaysnc
3501         {
3502             Text [ en-US ] = "Maturity";
3503         };
3505         String 5 // description of parameter 2  Coupdaysnc
3506         {
3507             Text [ en-US ] = "The maturity";
3508         };
3510         String 6 // name of parameter 3         Coupdaysnc
3511         {
3512             Text [ en-US ] = "Frequency";
3513         };
3515         String 7 // description of parameter 3  Coupdaysnc
3516         {
3517             Text [ en-US ] = "The frequency";
3518         };
3520         String 8 // name of parameter 4         Coupdaysnc
3521         {
3522             Text [ en-US ] = "Basis";
3523         };
3525         String 9 // description of parameter 4  Coupdaysnc
3526         {
3527             Text [ en-US ] = "The basis";
3528         };
3529     };
3531     Resource ANALYSIS_Coupdaybs
3532     {
3533         String 1    // description Coupdaybs
3534         {
3535             Text [ en-US ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
3536         };
3538         String 2 // name of parameter 1         Coupdaybs
3539         {
3540             Text [ en-US ] = "Settlement";
3541         };
3543         String 3 // description of parameter 1  Coupdaybs
3544         {
3545             Text [ en-US ] = "The settlement";
3546         };
3548         String 4 // name of parameter 2         Coupdaybs
3549         {
3550             Text [ en-US ] = "Maturity";
3551         };
3553         String 5 // description of parameter 2  Coupdaybs
3554         {
3555             Text [ en-US ] = "The maturity";
3556         };
3558         String 6 // name of parameter 3         Coupdaybs
3559         {
3560             Text [ en-US ] = "Frequency";
3561         };
3563         String 7 // description of parameter 3  Coupdaybs
3564         {
3565             Text [ en-US ] = "The frequency";
3566         };
3568         String 8 // name of parameter 4         Coupdaybs
3569         {
3570             Text [ en-US ] = "Basis";
3571         };
3573         String 9 // description of parameter 4  Coupdaybs
3574         {
3575             Text [ en-US ] = "The basis";
3576         };
3577     };
3579     Resource ANALYSIS_Couppcd
3580     {
3581         String 1    // description Couppcd
3582         {
3583             Text [ en-US ] = "Returns the last coupon date preceding the settlement date";
3584         };
3586         String 2 // name of parameter 1         Couppcd
3587         {
3588             Text [ en-US ] = "Settlement";
3589         };
3591         String 3 // description of parameter 1  Couppcd
3592         {
3593             Text [ en-US ] = "The settlement";
3594         };
3596         String 4 // name of parameter 2         Couppcd
3597         {
3598             Text [ en-US ] = "Maturity";
3599         };
3601         String 5 // description of parameter 2  Couppcd
3602         {
3603             Text [ en-US ] = "The maturity";
3604         };
3606         String 6 // name of parameter 3         Couppcd
3607         {
3608             Text [ en-US ] = "Frequency";
3609         };
3611         String 7 // description of parameter 3  Couppcd
3612         {
3613             Text [ en-US ] = "The frequency";
3614         };
3616         String 8 // name of parameter 4         Couppcd
3617         {
3618             Text [ en-US ] = "Basis";
3619         };
3621         String 9 // description of parameter 4  Couppcd
3622         {
3623             Text [ en-US ] = "The basis";
3624         };
3625     };
3627     Resource ANALYSIS_Coupnum
3628     {
3629         String 1    // description Coupnum
3630         {
3631             Text [ en-US ] = "Returns the number of coupons payable between the settlement and maturity dates";
3632         };
3634         String 2 // name of parameter 1         Coupnum
3635         {
3636             Text [ en-US ] = "Settlement";
3637         };
3639         String 3 // description of parameter 1  Coupnum
3640         {
3641             Text [ en-US ] = "The settlement";
3642         };
3644         String 4 // name of parameter 2         Coupnum
3645         {
3646             Text [ en-US ] = "Maturity";
3647         };
3649         String 5 // description of parameter 2  Coupnum
3650         {
3651             Text [ en-US ] = "The maturity";
3652         };
3654         String 6 // name of parameter 3         Coupnum
3655         {
3656             Text [ en-US ] = "Frequency";
3657         };
3659         String 7 // description of parameter 3  Coupnum
3660         {
3661             Text [ en-US ] = "The frequency";
3662         };
3664         String 8 // name of parameter 4         Coupnum
3665         {
3666             Text [ en-US ] = "Basis";
3667         };
3669         String 9 // description of parameter 4  Coupnum
3670         {
3671             Text [ en-US ] = "The basis";
3672         };
3673     };
3675     Resource ANALYSIS_Fvschedule
3676     {
3677         String 1    // description Fvschedule
3678         {
3679             Text [ en-US ] = "Returns the future value of the initial principal after a series of compound interest rates are applied";
3680         };
3682         String 2 // name of parameter 1         Fvschedule
3683         {
3684             Text [ en-US ] = "Principal";
3685         };
3687         String 3 // description of parameter 1  Fvschedule
3688         {
3689             Text [ en-US ] = "The principal";
3690         };
3692         String 4 // name of parameter 2         Fvschedule
3693         {
3694             Text [ en-US ] = "Schedule";
3695         };
3697         String 5 // description of parameter 2  Fvschedule
3698         {
3699             Text [ en-US ] = "The schedule";
3700         };
3701     };
3704 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */