xref: /AOO41X/main/scaddins/source/analysis/analysis.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir/*************************************************************************
2*cdf0e10cSrcweir *
3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir *
5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir *
7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir *
9*cdf0e10cSrcweir * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir *
11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir *
15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir *
21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir *
26*cdf0e10cSrcweir ************************************************************************/
27*cdf0e10cSrcweir
28*cdf0e10cSrcweir
29*cdf0e10cSrcweir#include "analysis.hrc"
30*cdf0e10cSrcweir
31*cdf0e10cSrcweir
32*cdf0e10cSrcweirResource RID_ANALYSIS_FUNCTION_DESCRIPTIONS
33*cdf0e10cSrcweir{
34*cdf0e10cSrcweir	Resource ANALYSIS_Workday
35*cdf0e10cSrcweir	{
36*cdf0e10cSrcweir		String 1	// description Workday
37*cdf0e10cSrcweir		{
38*cdf0e10cSrcweir			Text [ en-US ] = "Returns the serial number of the date before or after a specified number of workdays";
39*cdf0e10cSrcweir		};
40*cdf0e10cSrcweir
41*cdf0e10cSrcweir		String 2 // name of parameter 1			Workday
42*cdf0e10cSrcweir		{
43*cdf0e10cSrcweir			Text [ en-US ] = "Start date";
44*cdf0e10cSrcweir		};
45*cdf0e10cSrcweir
46*cdf0e10cSrcweir		String 3 // description of parameter 1	Workday
47*cdf0e10cSrcweir		{
48*cdf0e10cSrcweir			Text [ en-US ] = "The start date";
49*cdf0e10cSrcweir		};
50*cdf0e10cSrcweir
51*cdf0e10cSrcweir		String 4 // name of parameter 2			Workday
52*cdf0e10cSrcweir		{
53*cdf0e10cSrcweir			Text [ en-US ] = "Days";
54*cdf0e10cSrcweir		};
55*cdf0e10cSrcweir
56*cdf0e10cSrcweir		String 5 // description of parameter 2	Workday
57*cdf0e10cSrcweir		{
58*cdf0e10cSrcweir			Text [ en-US ] = "The number of workdays before or after the start date";
59*cdf0e10cSrcweir		};
60*cdf0e10cSrcweir
61*cdf0e10cSrcweir		String 6 // name of parameter 3			Workday
62*cdf0e10cSrcweir		{
63*cdf0e10cSrcweir			Text [ en-US ] = "Holidays";
64*cdf0e10cSrcweir		};
65*cdf0e10cSrcweir
66*cdf0e10cSrcweir		String 7 // description of parameter 3	Workday
67*cdf0e10cSrcweir		{
68*cdf0e10cSrcweir			Text [ en-US ] = "List of date values of days off (vacation, holidays, etc.)";
69*cdf0e10cSrcweir		};
70*cdf0e10cSrcweir	};
71*cdf0e10cSrcweir
72*cdf0e10cSrcweir	Resource ANALYSIS_Yearfrac
73*cdf0e10cSrcweir	{
74*cdf0e10cSrcweir		String 1	// description Yearfrac
75*cdf0e10cSrcweir		{
76*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of whole days between 'start date' and 'end date' as a year fraction";
77*cdf0e10cSrcweir		};
78*cdf0e10cSrcweir
79*cdf0e10cSrcweir		String 2 // name of parameter 1			Yearfrac
80*cdf0e10cSrcweir		{
81*cdf0e10cSrcweir			Text [ en-US ] = "Start date";
82*cdf0e10cSrcweir		};
83*cdf0e10cSrcweir
84*cdf0e10cSrcweir		String 3 // description of parameter 1	Yearfrac
85*cdf0e10cSrcweir		{
86*cdf0e10cSrcweir			Text [ en-US ] = "The start date";
87*cdf0e10cSrcweir		};
88*cdf0e10cSrcweir
89*cdf0e10cSrcweir		String 4 // name of parameter 2			Yearfrac
90*cdf0e10cSrcweir		{
91*cdf0e10cSrcweir			Text [ en-US ] = "End date";
92*cdf0e10cSrcweir		};
93*cdf0e10cSrcweir
94*cdf0e10cSrcweir		String 5 // description of parameter 2	Yearfrac
95*cdf0e10cSrcweir		{
96*cdf0e10cSrcweir			Text [ en-US ] = "The end date";
97*cdf0e10cSrcweir		};
98*cdf0e10cSrcweir
99*cdf0e10cSrcweir		String 6 // name of parameter 3			Yearfrac
100*cdf0e10cSrcweir		{
101*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
102*cdf0e10cSrcweir		};
103*cdf0e10cSrcweir
104*cdf0e10cSrcweir		String 7 // description of parameter 3	Yearfrac
105*cdf0e10cSrcweir		{
106*cdf0e10cSrcweir			Text [ en-US ] = "Basis for determining the interest days";
107*cdf0e10cSrcweir		};
108*cdf0e10cSrcweir	};
109*cdf0e10cSrcweir
110*cdf0e10cSrcweir	Resource ANALYSIS_Edate
111*cdf0e10cSrcweir	{
112*cdf0e10cSrcweir		String 1	// description Edate
113*cdf0e10cSrcweir		{
114*cdf0e10cSrcweir			Text [ en-US ] = "Returns the serial number of the date that is a specified number of months before or after the start date";
115*cdf0e10cSrcweir		};
116*cdf0e10cSrcweir
117*cdf0e10cSrcweir		String 2 // name of parameter 1			Edate
118*cdf0e10cSrcweir		{
119*cdf0e10cSrcweir			Text [ en-US ] = "Start date";
120*cdf0e10cSrcweir		};
121*cdf0e10cSrcweir
122*cdf0e10cSrcweir		String 3 // description of parameter 1	Edate
123*cdf0e10cSrcweir		{
124*cdf0e10cSrcweir			Text [ en-US ] = "The start date";
125*cdf0e10cSrcweir		};
126*cdf0e10cSrcweir
127*cdf0e10cSrcweir		String 4 // name of parameter 2			Edate
128*cdf0e10cSrcweir		{
129*cdf0e10cSrcweir			Text [ en-US ] = "Months";
130*cdf0e10cSrcweir		};
131*cdf0e10cSrcweir
132*cdf0e10cSrcweir		String 5 // description of parameter 2	Edate
133*cdf0e10cSrcweir		{
134*cdf0e10cSrcweir			Text [ en-US ] = "Number of months before or after the start date";
135*cdf0e10cSrcweir		};
136*cdf0e10cSrcweir	};
137*cdf0e10cSrcweir
138*cdf0e10cSrcweir    Resource ANALYSIS_Weeknum
139*cdf0e10cSrcweir	{
140*cdf0e10cSrcweir		String 1	// description Weeknum_add
141*cdf0e10cSrcweir		{
142*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of the calendar week in which the specified date occurs.";
143*cdf0e10cSrcweir		};
144*cdf0e10cSrcweir
145*cdf0e10cSrcweir		String 2 // name of parameter 1			Weeknum_add
146*cdf0e10cSrcweir		{
147*cdf0e10cSrcweir			Text [ en-US ] = "Date";
148*cdf0e10cSrcweir		};
149*cdf0e10cSrcweir
150*cdf0e10cSrcweir		String 3 // description of parameter 1	Weeknum_add
151*cdf0e10cSrcweir		{
152*cdf0e10cSrcweir			Text [ en-US ] = "The date";
153*cdf0e10cSrcweir		};
154*cdf0e10cSrcweir
155*cdf0e10cSrcweir		String 4 // name of parameter 2			Weeknum_add
156*cdf0e10cSrcweir		{
157*cdf0e10cSrcweir			Text [ en-US ] = "Return type";
158*cdf0e10cSrcweir		};
159*cdf0e10cSrcweir
160*cdf0e10cSrcweir		String 5 // description of parameter 2	Weeknum_add
161*cdf0e10cSrcweir		{
162*cdf0e10cSrcweir			Text [ en-US ] = "A number from 1 to 3 that specifies the day with which a week begins";
163*cdf0e10cSrcweir		};
164*cdf0e10cSrcweir	};
165*cdf0e10cSrcweir
166*cdf0e10cSrcweir    Resource ANALYSIS_Eomonth
167*cdf0e10cSrcweir	{
168*cdf0e10cSrcweir		String 1	// description EoMonth
169*cdf0e10cSrcweir		{
170*cdf0e10cSrcweir			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";
171*cdf0e10cSrcweir		};
172*cdf0e10cSrcweir
173*cdf0e10cSrcweir		String 2 // name of parameter 1			EoMonth
174*cdf0e10cSrcweir		{
175*cdf0e10cSrcweir			Text [ en-US ] = "Start date";
176*cdf0e10cSrcweir		};
177*cdf0e10cSrcweir
178*cdf0e10cSrcweir		String 3 // description of parameter 1	EoMonth
179*cdf0e10cSrcweir		{
180*cdf0e10cSrcweir			Text [ en-US ] = "The start date";
181*cdf0e10cSrcweir		};
182*cdf0e10cSrcweir
183*cdf0e10cSrcweir		String 4 // name of parameter 2			EoMonth
184*cdf0e10cSrcweir		{
185*cdf0e10cSrcweir			Text [ en-US ] = "Months";
186*cdf0e10cSrcweir		};
187*cdf0e10cSrcweir
188*cdf0e10cSrcweir		String 5 // description of parameter 2	EoMonth
189*cdf0e10cSrcweir		{
190*cdf0e10cSrcweir			Text [ en-US ] = "Number of months before or after the start date";
191*cdf0e10cSrcweir		};
192*cdf0e10cSrcweir	};
193*cdf0e10cSrcweir
194*cdf0e10cSrcweir	Resource ANALYSIS_Networkdays
195*cdf0e10cSrcweir	{
196*cdf0e10cSrcweir		String 1	// description Networkdays
197*cdf0e10cSrcweir		{
198*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of workdays between two dates";
199*cdf0e10cSrcweir		};
200*cdf0e10cSrcweir
201*cdf0e10cSrcweir		String 2 // name of parameter 1			Networkdays
202*cdf0e10cSrcweir		{
203*cdf0e10cSrcweir			Text [ en-US ] = "Start date";
204*cdf0e10cSrcweir		};
205*cdf0e10cSrcweir
206*cdf0e10cSrcweir		String 3 // description of parameter 1	Networkdays
207*cdf0e10cSrcweir		{
208*cdf0e10cSrcweir			Text [ en-US ] = "The start date";
209*cdf0e10cSrcweir		};
210*cdf0e10cSrcweir
211*cdf0e10cSrcweir		String 4 // name of parameter 2			Networkdays
212*cdf0e10cSrcweir		{
213*cdf0e10cSrcweir			Text [ en-US ] = "End date";
214*cdf0e10cSrcweir		};
215*cdf0e10cSrcweir
216*cdf0e10cSrcweir		String 5 // description of parameter 2	Networkdays
217*cdf0e10cSrcweir		{
218*cdf0e10cSrcweir			Text [ en-US ] = "The end date";
219*cdf0e10cSrcweir		};
220*cdf0e10cSrcweir
221*cdf0e10cSrcweir		String 6 // name of parameter 3			Networkdays
222*cdf0e10cSrcweir		{
223*cdf0e10cSrcweir			Text [ en-US ] = "Holidays";
224*cdf0e10cSrcweir		};
225*cdf0e10cSrcweir
226*cdf0e10cSrcweir		String 7 // description of parameter 3	Networkdays
227*cdf0e10cSrcweir		{
228*cdf0e10cSrcweir			Text [ en-US ] = "List of date values representing days off (vacation, holidays, etc.)";
229*cdf0e10cSrcweir		};
230*cdf0e10cSrcweir	};
231*cdf0e10cSrcweir
232*cdf0e10cSrcweir    Resource ANALYSIS_Iseven
233*cdf0e10cSrcweir	{
234*cdf0e10cSrcweir		String 1	// description Iseven_add
235*cdf0e10cSrcweir		{
236*cdf0e10cSrcweir			Text [ en-US ] = "Returns the value 'true' if the number is even";
237*cdf0e10cSrcweir		};
238*cdf0e10cSrcweir
239*cdf0e10cSrcweir		String 2 // name of parameter 1			Iseven_add
240*cdf0e10cSrcweir		{
241*cdf0e10cSrcweir			Text [ en-US ] = "Number";
242*cdf0e10cSrcweir		};
243*cdf0e10cSrcweir
244*cdf0e10cSrcweir		String 3 // description of parameter 1	Iseven_add
245*cdf0e10cSrcweir		{
246*cdf0e10cSrcweir			Text [ en-US ] = "The number";
247*cdf0e10cSrcweir		};
248*cdf0e10cSrcweir	};
249*cdf0e10cSrcweir
250*cdf0e10cSrcweir    Resource ANALYSIS_Isodd
251*cdf0e10cSrcweir	{
252*cdf0e10cSrcweir		String 1	// description Isodd_add
253*cdf0e10cSrcweir		{
254*cdf0e10cSrcweir			Text [ en-US ] = "Returns the value 'true' if the number is odd";
255*cdf0e10cSrcweir		};
256*cdf0e10cSrcweir
257*cdf0e10cSrcweir		String 2 // name of parameter 1			Isodd_add
258*cdf0e10cSrcweir		{
259*cdf0e10cSrcweir			Text [ en-US ] = "Number";
260*cdf0e10cSrcweir		};
261*cdf0e10cSrcweir
262*cdf0e10cSrcweir		String 3 // description of parameter 1	Isodd_add
263*cdf0e10cSrcweir		{
264*cdf0e10cSrcweir			Text [ en-US ] = "The number";
265*cdf0e10cSrcweir		};
266*cdf0e10cSrcweir	};
267*cdf0e10cSrcweir
268*cdf0e10cSrcweir	Resource ANALYSIS_Multinomial
269*cdf0e10cSrcweir	{
270*cdf0e10cSrcweir		String 1	// description Multinomial
271*cdf0e10cSrcweir		{
272*cdf0e10cSrcweir			Text [ en-US ] = "Returns the multinomial coefficient of a set of numbers";
273*cdf0e10cSrcweir		};
274*cdf0e10cSrcweir
275*cdf0e10cSrcweir		String 2 // name of parameter 1			Multinomial
276*cdf0e10cSrcweir		{
277*cdf0e10cSrcweir			Text [ en-US ] = "Number(s)";
278*cdf0e10cSrcweir		};
279*cdf0e10cSrcweir
280*cdf0e10cSrcweir		String 3 // description of parameter 1	Multinomial
281*cdf0e10cSrcweir		{
282*cdf0e10cSrcweir			Text [ en-US ] = "Number or list of numbers for which you want the multinomial coefficient";
283*cdf0e10cSrcweir		};
284*cdf0e10cSrcweir	};
285*cdf0e10cSrcweir
286*cdf0e10cSrcweir	Resource ANALYSIS_Seriessum
287*cdf0e10cSrcweir	{
288*cdf0e10cSrcweir		String 1	// description Seriessum
289*cdf0e10cSrcweir		{
290*cdf0e10cSrcweir			Text [ en-US ] = "Returns the sum of a power series";
291*cdf0e10cSrcweir		};
292*cdf0e10cSrcweir
293*cdf0e10cSrcweir		String 2 // name of parameter 1			Seriessum
294*cdf0e10cSrcweir		{
295*cdf0e10cSrcweir			Text [ en-US ] = "X";
296*cdf0e10cSrcweir		};
297*cdf0e10cSrcweir
298*cdf0e10cSrcweir		String 3 // description of parameter 1	Seriessum
299*cdf0e10cSrcweir		{
300*cdf0e10cSrcweir			Text [ en-US ] = "The independent variable of the power series";
301*cdf0e10cSrcweir		};
302*cdf0e10cSrcweir
303*cdf0e10cSrcweir		String 4 // name of parameter 2			Seriessum
304*cdf0e10cSrcweir		{
305*cdf0e10cSrcweir			Text [ en-US ] = "N";
306*cdf0e10cSrcweir		};
307*cdf0e10cSrcweir
308*cdf0e10cSrcweir		String 5 // description of parameter 2	Seriessum
309*cdf0e10cSrcweir		{
310*cdf0e10cSrcweir			Text [ en-US ] = "The initial power to which x is to be raised";
311*cdf0e10cSrcweir		};
312*cdf0e10cSrcweir
313*cdf0e10cSrcweir		String 6 // name of parameter 3			Seriessum
314*cdf0e10cSrcweir		{
315*cdf0e10cSrcweir			Text [ en-US ] = "M";
316*cdf0e10cSrcweir		};
317*cdf0e10cSrcweir
318*cdf0e10cSrcweir		String 7 // description of parameter 3	Seriessum
319*cdf0e10cSrcweir		{
320*cdf0e10cSrcweir			Text [ en-US ] = "The increment by which to increase n for each term in the series";
321*cdf0e10cSrcweir		};
322*cdf0e10cSrcweir
323*cdf0e10cSrcweir		String 8 // name of parameter 4			Seriessum
324*cdf0e10cSrcweir		{
325*cdf0e10cSrcweir			Text [ en-US ] = "Coefficients";
326*cdf0e10cSrcweir		};
327*cdf0e10cSrcweir
328*cdf0e10cSrcweir		String 9 // description of parameter 4	Seriessum
329*cdf0e10cSrcweir		{
330*cdf0e10cSrcweir			Text [ en-US ] = "Set of coefficients by which each successive power of the variable x is multiplied";
331*cdf0e10cSrcweir		};
332*cdf0e10cSrcweir	};
333*cdf0e10cSrcweir
334*cdf0e10cSrcweir	Resource ANALYSIS_Quotient
335*cdf0e10cSrcweir	{
336*cdf0e10cSrcweir		String 1	// description Quotient
337*cdf0e10cSrcweir		{
338*cdf0e10cSrcweir			Text [ en-US ] = "Returns the integer portion of a division";
339*cdf0e10cSrcweir		};
340*cdf0e10cSrcweir
341*cdf0e10cSrcweir		String 2 // name of parameter 1			Quotient
342*cdf0e10cSrcweir		{
343*cdf0e10cSrcweir			Text [ en-US ] = "Numerator";
344*cdf0e10cSrcweir		};
345*cdf0e10cSrcweir
346*cdf0e10cSrcweir		String 3 // description of parameter 1	Quotient
347*cdf0e10cSrcweir		{
348*cdf0e10cSrcweir			Text [ en-US ] = "The dividend";
349*cdf0e10cSrcweir		};
350*cdf0e10cSrcweir
351*cdf0e10cSrcweir		String 4 // name of parameter 2			Quotient
352*cdf0e10cSrcweir		{
353*cdf0e10cSrcweir			Text [ en-US ] = "Denominator";
354*cdf0e10cSrcweir		};
355*cdf0e10cSrcweir
356*cdf0e10cSrcweir		String 5 // description of parameter 2	Quotient
357*cdf0e10cSrcweir		{
358*cdf0e10cSrcweir			Text [ en-US ] = "The divisor";
359*cdf0e10cSrcweir		};
360*cdf0e10cSrcweir	};
361*cdf0e10cSrcweir
362*cdf0e10cSrcweir	Resource ANALYSIS_Mround
363*cdf0e10cSrcweir	{
364*cdf0e10cSrcweir		String 1	// description Mround
365*cdf0e10cSrcweir		{
366*cdf0e10cSrcweir			Text [ en-US ] = "Returns a number rounded to a specified multiple";
367*cdf0e10cSrcweir		};
368*cdf0e10cSrcweir
369*cdf0e10cSrcweir		String 2 // name of parameter 1			Mround
370*cdf0e10cSrcweir		{
371*cdf0e10cSrcweir			Text [ en-US ] = "Number";
372*cdf0e10cSrcweir		};
373*cdf0e10cSrcweir
374*cdf0e10cSrcweir		String 3 // description of parameter 1	Mround
375*cdf0e10cSrcweir		{
376*cdf0e10cSrcweir			Text [ en-US ] = "The number to round off";
377*cdf0e10cSrcweir		};
378*cdf0e10cSrcweir
379*cdf0e10cSrcweir		String 4 // name of parameter 2			Mround
380*cdf0e10cSrcweir		{
381*cdf0e10cSrcweir			Text [ en-US ] = "Multiple";
382*cdf0e10cSrcweir		};
383*cdf0e10cSrcweir
384*cdf0e10cSrcweir		String 5 // description of parameter 2	Mround
385*cdf0e10cSrcweir		{
386*cdf0e10cSrcweir			Text [ en-US ] = "The multiple to which you want to round number";
387*cdf0e10cSrcweir		};
388*cdf0e10cSrcweir	};
389*cdf0e10cSrcweir
390*cdf0e10cSrcweir    Resource ANALYSIS_Sqrtpi
391*cdf0e10cSrcweir	{
392*cdf0e10cSrcweir		String 1	// description SqrtPI
393*cdf0e10cSrcweir		{
394*cdf0e10cSrcweir			Text [ en-US ] = "Returns the square root of a number which has been multiplied by pi";
395*cdf0e10cSrcweir		};
396*cdf0e10cSrcweir
397*cdf0e10cSrcweir		String 2 // name of parameter 1			SqrtPI
398*cdf0e10cSrcweir		{
399*cdf0e10cSrcweir			Text [ en-US ] = "Number";
400*cdf0e10cSrcweir		};
401*cdf0e10cSrcweir
402*cdf0e10cSrcweir		String 3 // description of parameter 1	SqrtPI
403*cdf0e10cSrcweir		{
404*cdf0e10cSrcweir			Text [ en-US ] = "The number by which pi is multiplied";
405*cdf0e10cSrcweir		};
406*cdf0e10cSrcweir	};
407*cdf0e10cSrcweir
408*cdf0e10cSrcweir	Resource ANALYSIS_Randbetween
409*cdf0e10cSrcweir	{
410*cdf0e10cSrcweir		String 1	// description Randbetween
411*cdf0e10cSrcweir		{
412*cdf0e10cSrcweir			Text [ en-US ] = "Returns a random integer between the numbers you specify";
413*cdf0e10cSrcweir		};
414*cdf0e10cSrcweir
415*cdf0e10cSrcweir		String 2 // name of parameter 1			Randbetween
416*cdf0e10cSrcweir		{
417*cdf0e10cSrcweir			Text [ en-US ] = "Bottom";
418*cdf0e10cSrcweir		};
419*cdf0e10cSrcweir
420*cdf0e10cSrcweir		String 3 // description of parameter 1	Randbetween
421*cdf0e10cSrcweir		{
422*cdf0e10cSrcweir			Text [ en-US ] = "The smallest integer returned";
423*cdf0e10cSrcweir		};
424*cdf0e10cSrcweir
425*cdf0e10cSrcweir		String 4 // name of parameter 2			Randbetween
426*cdf0e10cSrcweir		{
427*cdf0e10cSrcweir			Text [ en-US ] = "Top";
428*cdf0e10cSrcweir		};
429*cdf0e10cSrcweir
430*cdf0e10cSrcweir		String 5 // description of parameter 2	Randbetween
431*cdf0e10cSrcweir		{
432*cdf0e10cSrcweir			Text [ en-US ] = "The largest integer returned";
433*cdf0e10cSrcweir		};
434*cdf0e10cSrcweir	};
435*cdf0e10cSrcweir
436*cdf0e10cSrcweir    Resource ANALYSIS_Gcd
437*cdf0e10cSrcweir	{
438*cdf0e10cSrcweir		String 1	// description Gcd_add
439*cdf0e10cSrcweir		{
440*cdf0e10cSrcweir			Text [ en-US ] = "Returns the greatest common divisor";
441*cdf0e10cSrcweir		};
442*cdf0e10cSrcweir
443*cdf0e10cSrcweir		String 2 // name of parameter 1			Gcd_add
444*cdf0e10cSrcweir		{
445*cdf0e10cSrcweir			Text [ en-US ] = "Number(s)";
446*cdf0e10cSrcweir		};
447*cdf0e10cSrcweir
448*cdf0e10cSrcweir		String 3 // description of parameter 1	Gcd_add
449*cdf0e10cSrcweir		{
450*cdf0e10cSrcweir			Text [ en-US ] = "Number or list of numbers";
451*cdf0e10cSrcweir		};
452*cdf0e10cSrcweir	};
453*cdf0e10cSrcweir
454*cdf0e10cSrcweir    Resource ANALYSIS_Lcm
455*cdf0e10cSrcweir	{
456*cdf0e10cSrcweir		String 1	// description Lcm_add
457*cdf0e10cSrcweir		{
458*cdf0e10cSrcweir			Text [ en-US ] = "Returns the least common multiple";
459*cdf0e10cSrcweir		};
460*cdf0e10cSrcweir
461*cdf0e10cSrcweir		String 2 // name of parameter 1			Lcm_add
462*cdf0e10cSrcweir		{
463*cdf0e10cSrcweir			Text [ en-US ] = "Number(s)";
464*cdf0e10cSrcweir		};
465*cdf0e10cSrcweir
466*cdf0e10cSrcweir		String 3 // description of parameter 1	Lcm_add
467*cdf0e10cSrcweir		{
468*cdf0e10cSrcweir			Text [ en-US ] = "Number or list of numbers";
469*cdf0e10cSrcweir		};
470*cdf0e10cSrcweir	};
471*cdf0e10cSrcweir
472*cdf0e10cSrcweir    Resource ANALYSIS_Besseli
473*cdf0e10cSrcweir	{
474*cdf0e10cSrcweir		String 1	// description BesselI
475*cdf0e10cSrcweir		{
476*cdf0e10cSrcweir			Text [ en-US ] = "Returns the modified Bessel function In(x)";
477*cdf0e10cSrcweir		};
478*cdf0e10cSrcweir
479*cdf0e10cSrcweir		String 2 // name of parameter 1			BesselI
480*cdf0e10cSrcweir		{
481*cdf0e10cSrcweir			Text [ en-US ] = "X";
482*cdf0e10cSrcweir		};
483*cdf0e10cSrcweir
484*cdf0e10cSrcweir		String 3 // description of parameter 1	BesselI
485*cdf0e10cSrcweir		{
486*cdf0e10cSrcweir			Text [ en-US ] = "The value at which the function is to be evaluated";
487*cdf0e10cSrcweir		};
488*cdf0e10cSrcweir
489*cdf0e10cSrcweir		String 4 // name of parameter 2			BesselI
490*cdf0e10cSrcweir		{
491*cdf0e10cSrcweir			Text [ en-US ] = "N";
492*cdf0e10cSrcweir		};
493*cdf0e10cSrcweir
494*cdf0e10cSrcweir		String 5 // description of parameter 2	BesselI
495*cdf0e10cSrcweir		{
496*cdf0e10cSrcweir			Text [ en-US ] = "The order of the Bessel function";
497*cdf0e10cSrcweir		};
498*cdf0e10cSrcweir	};
499*cdf0e10cSrcweir
500*cdf0e10cSrcweir    Resource ANALYSIS_Besselj
501*cdf0e10cSrcweir	{
502*cdf0e10cSrcweir		String 1	// description BesselJ
503*cdf0e10cSrcweir		{
504*cdf0e10cSrcweir			Text [ en-US ] = "Returns the Bessel function Jn(x)";
505*cdf0e10cSrcweir		};
506*cdf0e10cSrcweir
507*cdf0e10cSrcweir		String 2 // name of parameter 1			BesselJ
508*cdf0e10cSrcweir		{
509*cdf0e10cSrcweir			Text [ en-US ] = "X";
510*cdf0e10cSrcweir		};
511*cdf0e10cSrcweir
512*cdf0e10cSrcweir		String 3 // description of parameter 1	BesselJ
513*cdf0e10cSrcweir		{
514*cdf0e10cSrcweir			Text [ en-US ] = "The value at which the function is to be evaluated";
515*cdf0e10cSrcweir		};
516*cdf0e10cSrcweir
517*cdf0e10cSrcweir		String 4 // name of parameter 2			BesselJ
518*cdf0e10cSrcweir		{
519*cdf0e10cSrcweir			Text [ en-US ] = "N";
520*cdf0e10cSrcweir		};
521*cdf0e10cSrcweir
522*cdf0e10cSrcweir		String 5 // description of parameter 2	BesselJ
523*cdf0e10cSrcweir		{
524*cdf0e10cSrcweir			Text [ en-US ] = "The order of the Bessel function";
525*cdf0e10cSrcweir		};
526*cdf0e10cSrcweir	};
527*cdf0e10cSrcweir
528*cdf0e10cSrcweir    Resource ANALYSIS_Besselk
529*cdf0e10cSrcweir	{
530*cdf0e10cSrcweir		String 1	// description BesselK
531*cdf0e10cSrcweir		{
532*cdf0e10cSrcweir			Text [ en-US ] = "Returns the Bessel function Kn(x)";
533*cdf0e10cSrcweir		};
534*cdf0e10cSrcweir
535*cdf0e10cSrcweir		String 2 // name of parameter 1			BesselK
536*cdf0e10cSrcweir		{
537*cdf0e10cSrcweir			Text [ en-US ] = "X";
538*cdf0e10cSrcweir		};
539*cdf0e10cSrcweir
540*cdf0e10cSrcweir		String 3 // description of parameter 1	BesselK
541*cdf0e10cSrcweir		{
542*cdf0e10cSrcweir			Text [ en-US ] = "The value at which the function is to be evaluated";
543*cdf0e10cSrcweir		};
544*cdf0e10cSrcweir
545*cdf0e10cSrcweir		String 4 // name of parameter 2			BesselK
546*cdf0e10cSrcweir		{
547*cdf0e10cSrcweir			Text [ en-US ] = "N";
548*cdf0e10cSrcweir		};
549*cdf0e10cSrcweir
550*cdf0e10cSrcweir		String 5 // description of parameter 2	BesselK
551*cdf0e10cSrcweir		{
552*cdf0e10cSrcweir			Text [ en-US ] = "The order of the Bessel function";
553*cdf0e10cSrcweir		};
554*cdf0e10cSrcweir	};
555*cdf0e10cSrcweir
556*cdf0e10cSrcweir    Resource ANALYSIS_Bessely
557*cdf0e10cSrcweir	{
558*cdf0e10cSrcweir		String 1	// description BesselY
559*cdf0e10cSrcweir		{
560*cdf0e10cSrcweir			Text [ en-US ] = "Returns the Bessel function Yn(x)";
561*cdf0e10cSrcweir		};
562*cdf0e10cSrcweir
563*cdf0e10cSrcweir		String 2 // name of parameter 1			BesselY
564*cdf0e10cSrcweir		{
565*cdf0e10cSrcweir			Text [ en-US ] = "X";
566*cdf0e10cSrcweir		};
567*cdf0e10cSrcweir
568*cdf0e10cSrcweir		String 3 // description of parameter 1	BesselY
569*cdf0e10cSrcweir		{
570*cdf0e10cSrcweir			Text [ en-US ] = "The value at which the function is to be evaluated";
571*cdf0e10cSrcweir		};
572*cdf0e10cSrcweir
573*cdf0e10cSrcweir		String 4 // name of parameter 2			BesselY
574*cdf0e10cSrcweir		{
575*cdf0e10cSrcweir			Text [ en-US ] = "N";
576*cdf0e10cSrcweir		};
577*cdf0e10cSrcweir
578*cdf0e10cSrcweir		String 5 // description of parameter 2	BesselY
579*cdf0e10cSrcweir		{
580*cdf0e10cSrcweir			Text [ en-US ] = "The order of the Bessel function";
581*cdf0e10cSrcweir		};
582*cdf0e10cSrcweir	};
583*cdf0e10cSrcweir
584*cdf0e10cSrcweir	Resource ANALYSIS_Bin2Oct
585*cdf0e10cSrcweir	{
586*cdf0e10cSrcweir		String 1	// description Bin2Oct
587*cdf0e10cSrcweir		{
588*cdf0e10cSrcweir			Text [ en-US ] = "Converts a binary number to an octal number";
589*cdf0e10cSrcweir		};
590*cdf0e10cSrcweir
591*cdf0e10cSrcweir		String 2 // name of parameter 1			Bin2Oct
592*cdf0e10cSrcweir		{
593*cdf0e10cSrcweir			Text [ en-US ] = "Number";
594*cdf0e10cSrcweir		};
595*cdf0e10cSrcweir
596*cdf0e10cSrcweir		String 3 // description of parameter 1	Bin2Oct
597*cdf0e10cSrcweir		{
598*cdf0e10cSrcweir			Text [ en-US ] = "The binary number to be converted (as text)";
599*cdf0e10cSrcweir		};
600*cdf0e10cSrcweir
601*cdf0e10cSrcweir		String 4 // name of parameter 2			Bin2Oct
602*cdf0e10cSrcweir		{
603*cdf0e10cSrcweir			Text [ en-US ] = "Places";
604*cdf0e10cSrcweir		};
605*cdf0e10cSrcweir
606*cdf0e10cSrcweir		String 5 // description of parameter 2	Bin2Oct
607*cdf0e10cSrcweir		{
608*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
609*cdf0e10cSrcweir		};
610*cdf0e10cSrcweir	};
611*cdf0e10cSrcweir
612*cdf0e10cSrcweir	Resource ANALYSIS_Bin2Dec
613*cdf0e10cSrcweir	{
614*cdf0e10cSrcweir		String 1	// description Bin2Dec
615*cdf0e10cSrcweir		{
616*cdf0e10cSrcweir			Text [ en-US ] = "Converts a binary number to a decimal number";
617*cdf0e10cSrcweir		};
618*cdf0e10cSrcweir
619*cdf0e10cSrcweir		String 2 // name of parameter 1			Bin2Dec
620*cdf0e10cSrcweir		{
621*cdf0e10cSrcweir			Text [ en-US ] = "Number";
622*cdf0e10cSrcweir		};
623*cdf0e10cSrcweir
624*cdf0e10cSrcweir		String 3 // description of parameter 1	Bin2Dec
625*cdf0e10cSrcweir		{
626*cdf0e10cSrcweir			Text [ en-US ] = "The binary number to be converted (as text)";
627*cdf0e10cSrcweir		};
628*cdf0e10cSrcweir	};
629*cdf0e10cSrcweir
630*cdf0e10cSrcweir	Resource ANALYSIS_Bin2Hex
631*cdf0e10cSrcweir	{
632*cdf0e10cSrcweir		String 1	// description Bin2Hex
633*cdf0e10cSrcweir		{
634*cdf0e10cSrcweir			Text [ en-US ] = "Converts a binary number to a hexadecimal number";
635*cdf0e10cSrcweir		};
636*cdf0e10cSrcweir
637*cdf0e10cSrcweir		String 2 // name of parameter 1			Bin2Hex
638*cdf0e10cSrcweir		{
639*cdf0e10cSrcweir			Text [ en-US ] = "Number";
640*cdf0e10cSrcweir		};
641*cdf0e10cSrcweir
642*cdf0e10cSrcweir		String 3 // description of parameter 1	Bin2Hex
643*cdf0e10cSrcweir		{
644*cdf0e10cSrcweir			Text [ en-US ] = "The binary number to be converted (as text)";
645*cdf0e10cSrcweir		};
646*cdf0e10cSrcweir
647*cdf0e10cSrcweir		String 4 // name of parameter 2			Bin2Hex
648*cdf0e10cSrcweir		{
649*cdf0e10cSrcweir			Text [ en-US ] = "Places";
650*cdf0e10cSrcweir		};
651*cdf0e10cSrcweir
652*cdf0e10cSrcweir		String 5 // description of parameter 2	Bin2Hex
653*cdf0e10cSrcweir		{
654*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used.";
655*cdf0e10cSrcweir		};
656*cdf0e10cSrcweir	};
657*cdf0e10cSrcweir
658*cdf0e10cSrcweir	Resource ANALYSIS_Oct2Bin
659*cdf0e10cSrcweir	{
660*cdf0e10cSrcweir		String 1	// description Oct2Bin
661*cdf0e10cSrcweir		{
662*cdf0e10cSrcweir			Text [ en-US ] = "Converts an octal number to a binary number";
663*cdf0e10cSrcweir		};
664*cdf0e10cSrcweir
665*cdf0e10cSrcweir		String 2 // name of parameter 1			Oct2Bin
666*cdf0e10cSrcweir		{
667*cdf0e10cSrcweir			Text [ en-US ] = "Number";
668*cdf0e10cSrcweir		};
669*cdf0e10cSrcweir
670*cdf0e10cSrcweir		String 3 // description of parameter 1	Oct2Bin
671*cdf0e10cSrcweir		{
672*cdf0e10cSrcweir			Text [ en-US ] = "The octal number to be converted (as text)";
673*cdf0e10cSrcweir		};
674*cdf0e10cSrcweir
675*cdf0e10cSrcweir		String 4 // name of parameter 2			Oct2Bin
676*cdf0e10cSrcweir		{
677*cdf0e10cSrcweir			Text [ en-US ] = "Places";
678*cdf0e10cSrcweir		};
679*cdf0e10cSrcweir
680*cdf0e10cSrcweir		String 5 // description of parameter 2	Oct2Bin
681*cdf0e10cSrcweir		{
682*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
683*cdf0e10cSrcweir		};
684*cdf0e10cSrcweir	};
685*cdf0e10cSrcweir
686*cdf0e10cSrcweir	Resource ANALYSIS_Oct2Dec
687*cdf0e10cSrcweir	{
688*cdf0e10cSrcweir		String 1	// description Oct2Dec
689*cdf0e10cSrcweir		{
690*cdf0e10cSrcweir			Text [ en-US ] = "Converts an octal number to a decimal number";
691*cdf0e10cSrcweir		};
692*cdf0e10cSrcweir
693*cdf0e10cSrcweir		String 2 // name of parameter 1			Oct2Dec
694*cdf0e10cSrcweir		{
695*cdf0e10cSrcweir			Text [ en-US ] = "Number";
696*cdf0e10cSrcweir		};
697*cdf0e10cSrcweir
698*cdf0e10cSrcweir		String 3 // description of parameter 1	Oct2Dec
699*cdf0e10cSrcweir		{
700*cdf0e10cSrcweir			Text [ en-US ] = "The octal number to be converted (as text)";
701*cdf0e10cSrcweir		};
702*cdf0e10cSrcweir	};
703*cdf0e10cSrcweir
704*cdf0e10cSrcweir	Resource ANALYSIS_Oct2Hex
705*cdf0e10cSrcweir	{
706*cdf0e10cSrcweir		String 1	// description Oct2Hex
707*cdf0e10cSrcweir		{
708*cdf0e10cSrcweir			Text [ en-US ] = "Converts an octal number to a hexadecimal number";
709*cdf0e10cSrcweir		};
710*cdf0e10cSrcweir
711*cdf0e10cSrcweir		String 2 // name of parameter 1			Oct2Hex
712*cdf0e10cSrcweir		{
713*cdf0e10cSrcweir			Text [ en-US ] = "Number";
714*cdf0e10cSrcweir		};
715*cdf0e10cSrcweir
716*cdf0e10cSrcweir		String 3 // description of parameter 1	Oct2Hex
717*cdf0e10cSrcweir		{
718*cdf0e10cSrcweir			Text [ en-US ] = "The octal number to be converted (as text)";
719*cdf0e10cSrcweir		};
720*cdf0e10cSrcweir
721*cdf0e10cSrcweir		String 4 // name of parameter 2			Oct2Hex
722*cdf0e10cSrcweir		{
723*cdf0e10cSrcweir			Text [ en-US ] = "Places";
724*cdf0e10cSrcweir		};
725*cdf0e10cSrcweir
726*cdf0e10cSrcweir		String 5 // description of parameter 2	Oct2Hex
727*cdf0e10cSrcweir		{
728*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
729*cdf0e10cSrcweir		};
730*cdf0e10cSrcweir	};
731*cdf0e10cSrcweir
732*cdf0e10cSrcweir	Resource ANALYSIS_Dec2Bin
733*cdf0e10cSrcweir	{
734*cdf0e10cSrcweir		String 1	// description Dec2Bin
735*cdf0e10cSrcweir		{
736*cdf0e10cSrcweir			Text [ en-US ] = "Converts a decimal number to a binary number";
737*cdf0e10cSrcweir		};
738*cdf0e10cSrcweir
739*cdf0e10cSrcweir		String 2 // name of parameter 1			Dec2Bin
740*cdf0e10cSrcweir		{
741*cdf0e10cSrcweir			Text [ en-US ] = "Number";
742*cdf0e10cSrcweir		};
743*cdf0e10cSrcweir
744*cdf0e10cSrcweir		String 3 // description of parameter 1	Dec2Bin
745*cdf0e10cSrcweir		{
746*cdf0e10cSrcweir			Text [ en-US ] = "The decimal integer to be converted";
747*cdf0e10cSrcweir		};
748*cdf0e10cSrcweir
749*cdf0e10cSrcweir		String 4 // name of parameter 2			Dec2Bin
750*cdf0e10cSrcweir		{
751*cdf0e10cSrcweir			Text [ en-US ] = "Places";
752*cdf0e10cSrcweir		};
753*cdf0e10cSrcweir
754*cdf0e10cSrcweir		String 5 // description of parameter 2	Dec2Bin
755*cdf0e10cSrcweir		{
756*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
757*cdf0e10cSrcweir		};
758*cdf0e10cSrcweir	};
759*cdf0e10cSrcweir
760*cdf0e10cSrcweir	Resource ANALYSIS_Dec2Hex
761*cdf0e10cSrcweir	{
762*cdf0e10cSrcweir		String 1	// description Dec2Hex
763*cdf0e10cSrcweir		{
764*cdf0e10cSrcweir			Text [ en-US ] = "Converts a decimal number to a hexadecimal number";
765*cdf0e10cSrcweir		};
766*cdf0e10cSrcweir
767*cdf0e10cSrcweir		String 2 // name of parameter 1			Dec2Hex
768*cdf0e10cSrcweir		{
769*cdf0e10cSrcweir			Text [ en-US ] = "Number";
770*cdf0e10cSrcweir		};
771*cdf0e10cSrcweir
772*cdf0e10cSrcweir		String 3 // description of parameter 1	Dec2Hex
773*cdf0e10cSrcweir		{
774*cdf0e10cSrcweir			Text [ en-US ] = "The decimal integer to be converted";
775*cdf0e10cSrcweir		};
776*cdf0e10cSrcweir
777*cdf0e10cSrcweir		String 4 // name of parameter 2			Dec2Hex
778*cdf0e10cSrcweir		{
779*cdf0e10cSrcweir			Text [ en-US ] = "Places";
780*cdf0e10cSrcweir		};
781*cdf0e10cSrcweir
782*cdf0e10cSrcweir		String 5 // description of parameter 2	Dec2Hex
783*cdf0e10cSrcweir		{
784*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
785*cdf0e10cSrcweir		};
786*cdf0e10cSrcweir	};
787*cdf0e10cSrcweir
788*cdf0e10cSrcweir	Resource ANALYSIS_Dec2Oct
789*cdf0e10cSrcweir	{
790*cdf0e10cSrcweir		String 1	// description Dec2Oct
791*cdf0e10cSrcweir		{
792*cdf0e10cSrcweir			Text [ en-US ] = "Converts a decimal number into an octal number";
793*cdf0e10cSrcweir		};
794*cdf0e10cSrcweir
795*cdf0e10cSrcweir		String 2 // name of parameter 1			Dec2Oct
796*cdf0e10cSrcweir		{
797*cdf0e10cSrcweir			Text [ en-US ] = "Number";
798*cdf0e10cSrcweir		};
799*cdf0e10cSrcweir
800*cdf0e10cSrcweir		String 3 // description of parameter 1	Dec2Oct
801*cdf0e10cSrcweir		{
802*cdf0e10cSrcweir			Text [ en-US ] = "The decimal number";
803*cdf0e10cSrcweir		};
804*cdf0e10cSrcweir
805*cdf0e10cSrcweir		String 4 // name of parameter 2			Dec2Oct
806*cdf0e10cSrcweir		{
807*cdf0e10cSrcweir			Text [ en-US ] = "Places";
808*cdf0e10cSrcweir		};
809*cdf0e10cSrcweir
810*cdf0e10cSrcweir		String 5 // description of parameter 2	Dec2Oct
811*cdf0e10cSrcweir		{
812*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
813*cdf0e10cSrcweir		};
814*cdf0e10cSrcweir	};
815*cdf0e10cSrcweir
816*cdf0e10cSrcweir	Resource ANALYSIS_Hex2Bin
817*cdf0e10cSrcweir	{
818*cdf0e10cSrcweir		String 1	// description Hex2Bin
819*cdf0e10cSrcweir		{
820*cdf0e10cSrcweir			Text [ en-US ] = "Converts a hexadecimal number to a binary number";
821*cdf0e10cSrcweir		};
822*cdf0e10cSrcweir
823*cdf0e10cSrcweir		String 2 // name of parameter 1			Hex2Bin
824*cdf0e10cSrcweir		{
825*cdf0e10cSrcweir			Text [ en-US ] = "Number";
826*cdf0e10cSrcweir		};
827*cdf0e10cSrcweir
828*cdf0e10cSrcweir		String 3 // description of parameter 1	Hex2Bin
829*cdf0e10cSrcweir		{
830*cdf0e10cSrcweir			Text [ en-US ] = "The hexadecimal number to be converted (as text)";
831*cdf0e10cSrcweir		};
832*cdf0e10cSrcweir
833*cdf0e10cSrcweir		String 4 // name of parameter 2			Hex2Bin
834*cdf0e10cSrcweir		{
835*cdf0e10cSrcweir			Text [ en-US ] = "Places";
836*cdf0e10cSrcweir		};
837*cdf0e10cSrcweir
838*cdf0e10cSrcweir		String 5 // description of parameter 2	Hex2Bin
839*cdf0e10cSrcweir		{
840*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
841*cdf0e10cSrcweir		};
842*cdf0e10cSrcweir	};
843*cdf0e10cSrcweir
844*cdf0e10cSrcweir	Resource ANALYSIS_Hex2Dec
845*cdf0e10cSrcweir	{
846*cdf0e10cSrcweir		String 1	// description Hex2Dec
847*cdf0e10cSrcweir		{
848*cdf0e10cSrcweir			Text [ en-US ] = "Converts a hexadecimal number to a decimal number";
849*cdf0e10cSrcweir		};
850*cdf0e10cSrcweir
851*cdf0e10cSrcweir		String 2 // name of parameter 1			Hex2Dec
852*cdf0e10cSrcweir		{
853*cdf0e10cSrcweir			Text [ en-US ] = "Number";
854*cdf0e10cSrcweir		};
855*cdf0e10cSrcweir
856*cdf0e10cSrcweir		String 3 // description of parameter 1	Hex2Dec
857*cdf0e10cSrcweir		{
858*cdf0e10cSrcweir			Text [ en-US ] = "The hexadecimal number to be converted (as text)";
859*cdf0e10cSrcweir		};
860*cdf0e10cSrcweir	};
861*cdf0e10cSrcweir
862*cdf0e10cSrcweir	Resource ANALYSIS_Hex2Oct
863*cdf0e10cSrcweir	{
864*cdf0e10cSrcweir		String 1	// description Hex2Oct
865*cdf0e10cSrcweir		{
866*cdf0e10cSrcweir			Text [ en-US ] = "Converts a hexadecimal number to an octal number";
867*cdf0e10cSrcweir		};
868*cdf0e10cSrcweir
869*cdf0e10cSrcweir		String 2 // name of parameter 1			Hex2Oct
870*cdf0e10cSrcweir		{
871*cdf0e10cSrcweir			Text [ en-US ] = "Number";
872*cdf0e10cSrcweir		};
873*cdf0e10cSrcweir
874*cdf0e10cSrcweir		String 3 // description of parameter 1	Hex2Oct
875*cdf0e10cSrcweir		{
876*cdf0e10cSrcweir			Text [ en-US ] = "The hexadecimal number to be converted (as text)";
877*cdf0e10cSrcweir		};
878*cdf0e10cSrcweir
879*cdf0e10cSrcweir		String 4 // name of parameter 2			Hex2Oct
880*cdf0e10cSrcweir		{
881*cdf0e10cSrcweir			Text [ en-US ] = "Places";
882*cdf0e10cSrcweir		};
883*cdf0e10cSrcweir
884*cdf0e10cSrcweir		String 5 // description of parameter 2	Hex2Oct
885*cdf0e10cSrcweir		{
886*cdf0e10cSrcweir			Text [ en-US ] = "Number of places used";
887*cdf0e10cSrcweir		};
888*cdf0e10cSrcweir	};
889*cdf0e10cSrcweir
890*cdf0e10cSrcweir	Resource ANALYSIS_Delta
891*cdf0e10cSrcweir	{
892*cdf0e10cSrcweir		String 1	// description Delta
893*cdf0e10cSrcweir		{
894*cdf0e10cSrcweir			Text [ en-US ] = "Tests whether two values are equal";
895*cdf0e10cSrcweir		};
896*cdf0e10cSrcweir
897*cdf0e10cSrcweir		String 2 // name of parameter 1			Delta
898*cdf0e10cSrcweir		{
899*cdf0e10cSrcweir			Text [ en-US ] = "Number 1";
900*cdf0e10cSrcweir		};
901*cdf0e10cSrcweir
902*cdf0e10cSrcweir		String 3 // description of parameter 1	Delta
903*cdf0e10cSrcweir		{
904*cdf0e10cSrcweir			Text [ en-US ] = "The first number";
905*cdf0e10cSrcweir		};
906*cdf0e10cSrcweir
907*cdf0e10cSrcweir		String 4 // name of parameter 2			Delta
908*cdf0e10cSrcweir		{
909*cdf0e10cSrcweir			Text [ en-US ] = "Number 2";
910*cdf0e10cSrcweir		};
911*cdf0e10cSrcweir
912*cdf0e10cSrcweir		String 5 // description of parameter 2	Delta
913*cdf0e10cSrcweir		{
914*cdf0e10cSrcweir			Text [ en-US ] = "The second number";
915*cdf0e10cSrcweir		};
916*cdf0e10cSrcweir	};
917*cdf0e10cSrcweir
918*cdf0e10cSrcweir	Resource ANALYSIS_Erf
919*cdf0e10cSrcweir	{
920*cdf0e10cSrcweir		String 1	// description Erf
921*cdf0e10cSrcweir		{
922*cdf0e10cSrcweir			Text [ en-US ] = "Returns the error function";
923*cdf0e10cSrcweir		};
924*cdf0e10cSrcweir
925*cdf0e10cSrcweir		String 2 // name of parameter 1			Erf
926*cdf0e10cSrcweir		{
927*cdf0e10cSrcweir			Text [ en-US ] = "Lower limit";
928*cdf0e10cSrcweir		};
929*cdf0e10cSrcweir
930*cdf0e10cSrcweir		String 3 // description of parameter 1	Erf
931*cdf0e10cSrcweir		{
932*cdf0e10cSrcweir			Text [ en-US ] = "The lower limit for integration";
933*cdf0e10cSrcweir		};
934*cdf0e10cSrcweir
935*cdf0e10cSrcweir		String 4 // name of parameter 2			Erf
936*cdf0e10cSrcweir		{
937*cdf0e10cSrcweir			Text [ en-US ] = "Upper limit";
938*cdf0e10cSrcweir		};
939*cdf0e10cSrcweir
940*cdf0e10cSrcweir		String 5 // description of parameter 2	Erf
941*cdf0e10cSrcweir		{
942*cdf0e10cSrcweir			Text [ en-US ] = "The upper limit for integration";
943*cdf0e10cSrcweir		};
944*cdf0e10cSrcweir	};
945*cdf0e10cSrcweir
946*cdf0e10cSrcweir	Resource ANALYSIS_Erfc
947*cdf0e10cSrcweir	{
948*cdf0e10cSrcweir		String 1	// description Erfc
949*cdf0e10cSrcweir		{
950*cdf0e10cSrcweir			Text [ en-US ] = "Returns the complementary error function";
951*cdf0e10cSrcweir		};
952*cdf0e10cSrcweir
953*cdf0e10cSrcweir		String 2 // name of parameter 1			Erfc
954*cdf0e10cSrcweir		{
955*cdf0e10cSrcweir			Text [ en-US ] = "Lower limit";
956*cdf0e10cSrcweir		};
957*cdf0e10cSrcweir
958*cdf0e10cSrcweir		String 3 // description of parameter 1	Erfc
959*cdf0e10cSrcweir		{
960*cdf0e10cSrcweir			Text [ en-US ] = "The lower limit for integration";
961*cdf0e10cSrcweir		};
962*cdf0e10cSrcweir	};
963*cdf0e10cSrcweir
964*cdf0e10cSrcweir    Resource ANALYSIS_Gestep
965*cdf0e10cSrcweir	{
966*cdf0e10cSrcweir		String 1	// description GeStep
967*cdf0e10cSrcweir		{
968*cdf0e10cSrcweir			Text [ en-US ] = "Tests whether a number is greater than a threshold value";
969*cdf0e10cSrcweir		};
970*cdf0e10cSrcweir
971*cdf0e10cSrcweir		String 2 // name of parameter 1			GeStep
972*cdf0e10cSrcweir		{
973*cdf0e10cSrcweir			Text [ en-US ] = "Number";
974*cdf0e10cSrcweir		};
975*cdf0e10cSrcweir
976*cdf0e10cSrcweir		String 3 // description of parameter 1	GeStep
977*cdf0e10cSrcweir		{
978*cdf0e10cSrcweir			Text [ en-US ] = "The value to test against step";
979*cdf0e10cSrcweir		};
980*cdf0e10cSrcweir
981*cdf0e10cSrcweir		String 4 // name of parameter 2			GeStep
982*cdf0e10cSrcweir		{
983*cdf0e10cSrcweir			Text [ en-US ] = "Step";
984*cdf0e10cSrcweir		};
985*cdf0e10cSrcweir
986*cdf0e10cSrcweir		String 5 // description of parameter 2	GeStep
987*cdf0e10cSrcweir		{
988*cdf0e10cSrcweir			Text [ en-US ] = "The threshhold value";
989*cdf0e10cSrcweir		};
990*cdf0e10cSrcweir	};
991*cdf0e10cSrcweir
992*cdf0e10cSrcweir	Resource ANALYSIS_Factdouble
993*cdf0e10cSrcweir	{
994*cdf0e10cSrcweir		String 1	// description Factdouble
995*cdf0e10cSrcweir		{
996*cdf0e10cSrcweir			Text [ en-US ] = "Returns the double factorial of Number";
997*cdf0e10cSrcweir		};
998*cdf0e10cSrcweir
999*cdf0e10cSrcweir		String 2 // name of parameter 1			Factdouble
1000*cdf0e10cSrcweir		{
1001*cdf0e10cSrcweir			Text [ en-US ] = "Number";
1002*cdf0e10cSrcweir		};
1003*cdf0e10cSrcweir
1004*cdf0e10cSrcweir		String 3 // description of parameter 1	Factdouble
1005*cdf0e10cSrcweir		{
1006*cdf0e10cSrcweir			Text [ en-US ] = "The number";
1007*cdf0e10cSrcweir		};
1008*cdf0e10cSrcweir	};
1009*cdf0e10cSrcweir
1010*cdf0e10cSrcweir	Resource ANALYSIS_Imabs
1011*cdf0e10cSrcweir	{
1012*cdf0e10cSrcweir		String 1	// description Imabs
1013*cdf0e10cSrcweir		{
1014*cdf0e10cSrcweir			Text [ en-US ] = "Returns the absolute value (modulus) of a complex number";
1015*cdf0e10cSrcweir		};
1016*cdf0e10cSrcweir
1017*cdf0e10cSrcweir		String 2 // name of parameter 1			Imabs
1018*cdf0e10cSrcweir		{
1019*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1020*cdf0e10cSrcweir		};
1021*cdf0e10cSrcweir
1022*cdf0e10cSrcweir		String 3 // description of parameter 1	Imabs
1023*cdf0e10cSrcweir		{
1024*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1025*cdf0e10cSrcweir		};
1026*cdf0e10cSrcweir	};
1027*cdf0e10cSrcweir
1028*cdf0e10cSrcweir	Resource ANALYSIS_Imaginary
1029*cdf0e10cSrcweir	{
1030*cdf0e10cSrcweir		String 1	// description Imaginary
1031*cdf0e10cSrcweir		{
1032*cdf0e10cSrcweir			Text [ en-US ] = "Returns the imaginary coefficient of a complex number";
1033*cdf0e10cSrcweir		};
1034*cdf0e10cSrcweir
1035*cdf0e10cSrcweir		String 2 // name of parameter 1			Imaginary
1036*cdf0e10cSrcweir		{
1037*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1038*cdf0e10cSrcweir		};
1039*cdf0e10cSrcweir
1040*cdf0e10cSrcweir		String 3 // description of parameter 1	Imaginary
1041*cdf0e10cSrcweir		{
1042*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1043*cdf0e10cSrcweir		};
1044*cdf0e10cSrcweir	};
1045*cdf0e10cSrcweir
1046*cdf0e10cSrcweir	Resource ANALYSIS_Impower
1047*cdf0e10cSrcweir	{
1048*cdf0e10cSrcweir		String 1	// description Impower
1049*cdf0e10cSrcweir		{
1050*cdf0e10cSrcweir			Text [ en-US ] = "Returns a complex number raised to an integer power";
1051*cdf0e10cSrcweir		};
1052*cdf0e10cSrcweir
1053*cdf0e10cSrcweir		String 2 // name of parameter 1			Impower
1054*cdf0e10cSrcweir		{
1055*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1056*cdf0e10cSrcweir		};
1057*cdf0e10cSrcweir
1058*cdf0e10cSrcweir		String 3 // description of parameter 1	Impower
1059*cdf0e10cSrcweir		{
1060*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1061*cdf0e10cSrcweir		};
1062*cdf0e10cSrcweir
1063*cdf0e10cSrcweir		String 4 // name of parameter 2			Impower
1064*cdf0e10cSrcweir		{
1065*cdf0e10cSrcweir			Text [ en-US ] = "Number";
1066*cdf0e10cSrcweir		};
1067*cdf0e10cSrcweir
1068*cdf0e10cSrcweir		String 5 // description of parameter 2	Impower
1069*cdf0e10cSrcweir		{
1070*cdf0e10cSrcweir			Text [ en-US ] = "Power to which the complex number is raised";
1071*cdf0e10cSrcweir		};
1072*cdf0e10cSrcweir	};
1073*cdf0e10cSrcweir
1074*cdf0e10cSrcweir	Resource ANALYSIS_Imargument
1075*cdf0e10cSrcweir	{
1076*cdf0e10cSrcweir		String 1	// description Imargument
1077*cdf0e10cSrcweir		{
1078*cdf0e10cSrcweir			Text [ en-US ] = "Returns the argument theta, an angle expressed in radians";
1079*cdf0e10cSrcweir		};
1080*cdf0e10cSrcweir
1081*cdf0e10cSrcweir		String 2 // name of parameter 1			Imargument
1082*cdf0e10cSrcweir		{
1083*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1084*cdf0e10cSrcweir		};
1085*cdf0e10cSrcweir
1086*cdf0e10cSrcweir		String 3 // description of parameter 1	Imargument
1087*cdf0e10cSrcweir		{
1088*cdf0e10cSrcweir			Text [ en-US ] = "A complex number";
1089*cdf0e10cSrcweir		};
1090*cdf0e10cSrcweir	};
1091*cdf0e10cSrcweir
1092*cdf0e10cSrcweir	Resource ANALYSIS_Imcos
1093*cdf0e10cSrcweir	{
1094*cdf0e10cSrcweir		String 1	// description Imcos
1095*cdf0e10cSrcweir		{
1096*cdf0e10cSrcweir			Text [ en-US ] = "Returns the cosine of a complex number";
1097*cdf0e10cSrcweir		};
1098*cdf0e10cSrcweir
1099*cdf0e10cSrcweir		String 2 // name of parameter 1			Imcos
1100*cdf0e10cSrcweir		{
1101*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1102*cdf0e10cSrcweir		};
1103*cdf0e10cSrcweir
1104*cdf0e10cSrcweir		String 3 // description of parameter 1	Imcos
1105*cdf0e10cSrcweir		{
1106*cdf0e10cSrcweir			Text [ en-US ] = "A complex number";
1107*cdf0e10cSrcweir		};
1108*cdf0e10cSrcweir	};
1109*cdf0e10cSrcweir
1110*cdf0e10cSrcweir	Resource ANALYSIS_Imdiv
1111*cdf0e10cSrcweir	{
1112*cdf0e10cSrcweir		String 1	// description Imdiv
1113*cdf0e10cSrcweir		{
1114*cdf0e10cSrcweir			Text [ en-US ] = "Returns the quotient of two complex numbers";
1115*cdf0e10cSrcweir		};
1116*cdf0e10cSrcweir
1117*cdf0e10cSrcweir		String 2 // name of parameter 1			Imdiv
1118*cdf0e10cSrcweir		{
1119*cdf0e10cSrcweir			Text [ en-US ] = "Numerator";
1120*cdf0e10cSrcweir		};
1121*cdf0e10cSrcweir
1122*cdf0e10cSrcweir		String 3 // description of parameter 1	Imdiv
1123*cdf0e10cSrcweir		{
1124*cdf0e10cSrcweir			Text [ en-US ] = "The dividend";
1125*cdf0e10cSrcweir		};
1126*cdf0e10cSrcweir
1127*cdf0e10cSrcweir		String 4 // name of parameter 2			Imdiv
1128*cdf0e10cSrcweir		{
1129*cdf0e10cSrcweir			Text [ en-US ] = "Denominator";
1130*cdf0e10cSrcweir		};
1131*cdf0e10cSrcweir
1132*cdf0e10cSrcweir		String 5 // description of parameter 2	Imdiv
1133*cdf0e10cSrcweir		{
1134*cdf0e10cSrcweir			Text [ en-US ] = "The divisor";
1135*cdf0e10cSrcweir		};
1136*cdf0e10cSrcweir	};
1137*cdf0e10cSrcweir
1138*cdf0e10cSrcweir	Resource ANALYSIS_Imexp
1139*cdf0e10cSrcweir	{
1140*cdf0e10cSrcweir		String 1	// description Imexp
1141*cdf0e10cSrcweir		{
1142*cdf0e10cSrcweir			Text [ en-US ] = "Returns the algebraic form of the exponential of a complex number";
1143*cdf0e10cSrcweir		};
1144*cdf0e10cSrcweir
1145*cdf0e10cSrcweir		String 2 // name of parameter 1			Imexp
1146*cdf0e10cSrcweir		{
1147*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1148*cdf0e10cSrcweir		};
1149*cdf0e10cSrcweir
1150*cdf0e10cSrcweir		String 3 // description of parameter 1	Imexp
1151*cdf0e10cSrcweir		{
1152*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1153*cdf0e10cSrcweir		};
1154*cdf0e10cSrcweir	};
1155*cdf0e10cSrcweir
1156*cdf0e10cSrcweir	Resource ANALYSIS_Imconjugate
1157*cdf0e10cSrcweir	{
1158*cdf0e10cSrcweir		String 1	// description Imconjugate
1159*cdf0e10cSrcweir		{
1160*cdf0e10cSrcweir			Text [ en-US ] = "Returns the complex conjugate of a complex number";
1161*cdf0e10cSrcweir		};
1162*cdf0e10cSrcweir
1163*cdf0e10cSrcweir		String 2 // name of parameter 1			Imconjugate
1164*cdf0e10cSrcweir		{
1165*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1166*cdf0e10cSrcweir		};
1167*cdf0e10cSrcweir
1168*cdf0e10cSrcweir		String 3 // description of parameter 1	Imconjugate
1169*cdf0e10cSrcweir		{
1170*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1171*cdf0e10cSrcweir		};
1172*cdf0e10cSrcweir	};
1173*cdf0e10cSrcweir
1174*cdf0e10cSrcweir	Resource ANALYSIS_Imln
1175*cdf0e10cSrcweir	{
1176*cdf0e10cSrcweir		String 1	// description Imln
1177*cdf0e10cSrcweir		{
1178*cdf0e10cSrcweir			Text [ en-US ] = "Returns the natural logarithm of a complex number";
1179*cdf0e10cSrcweir		};
1180*cdf0e10cSrcweir
1181*cdf0e10cSrcweir		String 2 // name of parameter 1			Imln
1182*cdf0e10cSrcweir		{
1183*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1184*cdf0e10cSrcweir		};
1185*cdf0e10cSrcweir
1186*cdf0e10cSrcweir		String 3 // description of parameter 1	Imln
1187*cdf0e10cSrcweir		{
1188*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1189*cdf0e10cSrcweir		};
1190*cdf0e10cSrcweir	};
1191*cdf0e10cSrcweir
1192*cdf0e10cSrcweir	Resource ANALYSIS_Imlog10
1193*cdf0e10cSrcweir	{
1194*cdf0e10cSrcweir		String 1	// description Imlog10
1195*cdf0e10cSrcweir		{
1196*cdf0e10cSrcweir			Text [ en-US ] = "Returns the base-10 logarithm of a complex number";
1197*cdf0e10cSrcweir		};
1198*cdf0e10cSrcweir
1199*cdf0e10cSrcweir		String 2 // name of parameter 1			Imlog10
1200*cdf0e10cSrcweir		{
1201*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1202*cdf0e10cSrcweir		};
1203*cdf0e10cSrcweir
1204*cdf0e10cSrcweir		String 3 // description of parameter 1	Imlog10
1205*cdf0e10cSrcweir		{
1206*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1207*cdf0e10cSrcweir		};
1208*cdf0e10cSrcweir	};
1209*cdf0e10cSrcweir
1210*cdf0e10cSrcweir	Resource ANALYSIS_Imlog2
1211*cdf0e10cSrcweir	{
1212*cdf0e10cSrcweir		String 1	// description Imlog2
1213*cdf0e10cSrcweir		{
1214*cdf0e10cSrcweir			Text [ en-US ] = "Returns the base-2 logarithm of a complex number";
1215*cdf0e10cSrcweir		};
1216*cdf0e10cSrcweir
1217*cdf0e10cSrcweir		String 2 // name of parameter 1			Imlog2
1218*cdf0e10cSrcweir		{
1219*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1220*cdf0e10cSrcweir		};
1221*cdf0e10cSrcweir
1222*cdf0e10cSrcweir		String 3 // description of parameter 1	Imlog2
1223*cdf0e10cSrcweir		{
1224*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1225*cdf0e10cSrcweir		};
1226*cdf0e10cSrcweir	};
1227*cdf0e10cSrcweir
1228*cdf0e10cSrcweir	Resource ANALYSIS_Improduct
1229*cdf0e10cSrcweir	{
1230*cdf0e10cSrcweir		String 1	// description Improduct
1231*cdf0e10cSrcweir		{
1232*cdf0e10cSrcweir			Text [ en-US ] = "Returns the product of several complex numbers";
1233*cdf0e10cSrcweir		};
1234*cdf0e10cSrcweir
1235*cdf0e10cSrcweir		String 2 // name of parameter 1			Improduct
1236*cdf0e10cSrcweir		{
1237*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1238*cdf0e10cSrcweir		};
1239*cdf0e10cSrcweir
1240*cdf0e10cSrcweir		String 3 // description of parameter 1	Improduct
1241*cdf0e10cSrcweir		{
1242*cdf0e10cSrcweir			Text [ en-US ] = "The first complex number";
1243*cdf0e10cSrcweir		};
1244*cdf0e10cSrcweir
1245*cdf0e10cSrcweir		String 4 // name of parameter 2			Improduct
1246*cdf0e10cSrcweir		{
1247*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1248*cdf0e10cSrcweir		};
1249*cdf0e10cSrcweir
1250*cdf0e10cSrcweir		String 5 // description of parameter 2	Improduct
1251*cdf0e10cSrcweir		{
1252*cdf0e10cSrcweir			Text [ en-US ] = "Another complex number";
1253*cdf0e10cSrcweir		};
1254*cdf0e10cSrcweir	};
1255*cdf0e10cSrcweir
1256*cdf0e10cSrcweir	Resource ANALYSIS_Imreal
1257*cdf0e10cSrcweir	{
1258*cdf0e10cSrcweir		String 1	// description Imreal
1259*cdf0e10cSrcweir		{
1260*cdf0e10cSrcweir			Text [ en-US ] = "Returns the real coefficient of a complex number";
1261*cdf0e10cSrcweir		};
1262*cdf0e10cSrcweir
1263*cdf0e10cSrcweir		String 2 // name of parameter 1			Imreal
1264*cdf0e10cSrcweir		{
1265*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1266*cdf0e10cSrcweir		};
1267*cdf0e10cSrcweir
1268*cdf0e10cSrcweir		String 3 // description of parameter 1	Imreal
1269*cdf0e10cSrcweir		{
1270*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1271*cdf0e10cSrcweir		};
1272*cdf0e10cSrcweir	};
1273*cdf0e10cSrcweir
1274*cdf0e10cSrcweir	Resource ANALYSIS_Imsin
1275*cdf0e10cSrcweir	{
1276*cdf0e10cSrcweir		String 1	// description Imsin
1277*cdf0e10cSrcweir		{
1278*cdf0e10cSrcweir			Text [ en-US ] = "Returns the sine of a complex number";
1279*cdf0e10cSrcweir		};
1280*cdf0e10cSrcweir
1281*cdf0e10cSrcweir		String 2 // name of parameter 1			Imsin
1282*cdf0e10cSrcweir		{
1283*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1284*cdf0e10cSrcweir		};
1285*cdf0e10cSrcweir
1286*cdf0e10cSrcweir		String 3 // description of parameter 1	Imsin
1287*cdf0e10cSrcweir		{
1288*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1289*cdf0e10cSrcweir		};
1290*cdf0e10cSrcweir	};
1291*cdf0e10cSrcweir
1292*cdf0e10cSrcweir	Resource ANALYSIS_Imsub
1293*cdf0e10cSrcweir	{
1294*cdf0e10cSrcweir		String 1	// description Imsub
1295*cdf0e10cSrcweir		{
1296*cdf0e10cSrcweir			Text [ en-US ] = "Returns the difference of two complex numbers";
1297*cdf0e10cSrcweir		};
1298*cdf0e10cSrcweir
1299*cdf0e10cSrcweir		String 2 // name of parameter 1			Imsub
1300*cdf0e10cSrcweir		{
1301*cdf0e10cSrcweir			Text [ en-US ] = "Complex number 1";
1302*cdf0e10cSrcweir		};
1303*cdf0e10cSrcweir
1304*cdf0e10cSrcweir		String 3 // description of parameter 1	Imsub
1305*cdf0e10cSrcweir		{
1306*cdf0e10cSrcweir			Text [ en-US ] = "Complex number 1";
1307*cdf0e10cSrcweir		};
1308*cdf0e10cSrcweir
1309*cdf0e10cSrcweir		String 4 // name of parameter 2			Imsub
1310*cdf0e10cSrcweir		{
1311*cdf0e10cSrcweir			Text [ en-US ] = "Complex number 2";
1312*cdf0e10cSrcweir		};
1313*cdf0e10cSrcweir
1314*cdf0e10cSrcweir		String 5 // description of parameter 2	Imsub
1315*cdf0e10cSrcweir		{
1316*cdf0e10cSrcweir			Text [ en-US ] = "Complex number 2";
1317*cdf0e10cSrcweir		};
1318*cdf0e10cSrcweir	};
1319*cdf0e10cSrcweir
1320*cdf0e10cSrcweir	Resource ANALYSIS_Imsqrt
1321*cdf0e10cSrcweir	{
1322*cdf0e10cSrcweir		String 1	// description Imsqrt
1323*cdf0e10cSrcweir		{
1324*cdf0e10cSrcweir			Text [ en-US ] = "Returns the square root of a complex number";
1325*cdf0e10cSrcweir		};
1326*cdf0e10cSrcweir
1327*cdf0e10cSrcweir		String 2 // name of parameter 1			Imsqrt
1328*cdf0e10cSrcweir		{
1329*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1330*cdf0e10cSrcweir		};
1331*cdf0e10cSrcweir
1332*cdf0e10cSrcweir		String 3 // description of parameter 1	Imsqrt
1333*cdf0e10cSrcweir		{
1334*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1335*cdf0e10cSrcweir		};
1336*cdf0e10cSrcweir	};
1337*cdf0e10cSrcweir
1338*cdf0e10cSrcweir	Resource ANALYSIS_Imsum
1339*cdf0e10cSrcweir	{
1340*cdf0e10cSrcweir		String 1	// description Imsum
1341*cdf0e10cSrcweir		{
1342*cdf0e10cSrcweir			Text [ en-US ] = "Returns the sum of complex numbers";
1343*cdf0e10cSrcweir		};
1344*cdf0e10cSrcweir
1345*cdf0e10cSrcweir		String 2 // name of parameter 1			Imsum
1346*cdf0e10cSrcweir		{
1347*cdf0e10cSrcweir			Text [ en-US ] = "Complex number";
1348*cdf0e10cSrcweir		};
1349*cdf0e10cSrcweir
1350*cdf0e10cSrcweir		String 3 // description of parameter 1	Imsum
1351*cdf0e10cSrcweir		{
1352*cdf0e10cSrcweir			Text [ en-US ] = "The complex number";
1353*cdf0e10cSrcweir		};
1354*cdf0e10cSrcweir
1355*cdf0e10cSrcweir	};
1356*cdf0e10cSrcweir
1357*cdf0e10cSrcweir	Resource ANALYSIS_Complex
1358*cdf0e10cSrcweir	{
1359*cdf0e10cSrcweir		String 1	// description Complex
1360*cdf0e10cSrcweir		{
1361*cdf0e10cSrcweir			Text [ en-US ] = "Converts real and imaginary coefficients into a complex number";
1362*cdf0e10cSrcweir		};
1363*cdf0e10cSrcweir
1364*cdf0e10cSrcweir		String 2 // name of parameter 1			Complex
1365*cdf0e10cSrcweir		{
1366*cdf0e10cSrcweir			Text [ en-US ] = "Real num";
1367*cdf0e10cSrcweir		};
1368*cdf0e10cSrcweir
1369*cdf0e10cSrcweir		String 3 // description of parameter 1	Complex
1370*cdf0e10cSrcweir		{
1371*cdf0e10cSrcweir			Text [ en-US ] = "The real coefficient";
1372*cdf0e10cSrcweir		};
1373*cdf0e10cSrcweir
1374*cdf0e10cSrcweir		String 4 // name of parameter 2			Complex
1375*cdf0e10cSrcweir		{
1376*cdf0e10cSrcweir			Text [ en-US ] = "I num";
1377*cdf0e10cSrcweir		};
1378*cdf0e10cSrcweir
1379*cdf0e10cSrcweir		String 5 // description of parameter 2	Complex
1380*cdf0e10cSrcweir		{
1381*cdf0e10cSrcweir			Text [ en-US ] = "The imaginary coefficient";
1382*cdf0e10cSrcweir		};
1383*cdf0e10cSrcweir
1384*cdf0e10cSrcweir		String 6 // name of parameter 3			Complex
1385*cdf0e10cSrcweir		{
1386*cdf0e10cSrcweir			Text [ en-US ] = "Suffix";
1387*cdf0e10cSrcweir		};
1388*cdf0e10cSrcweir
1389*cdf0e10cSrcweir		String 7 // description of parameter 3	Complex
1390*cdf0e10cSrcweir		{
1391*cdf0e10cSrcweir			Text [ en-US ] = "The suffix";
1392*cdf0e10cSrcweir		};
1393*cdf0e10cSrcweir	};
1394*cdf0e10cSrcweir
1395*cdf0e10cSrcweir    Resource ANALYSIS_Convert
1396*cdf0e10cSrcweir	{
1397*cdf0e10cSrcweir		String 1	// description Convert_add
1398*cdf0e10cSrcweir		{
1399*cdf0e10cSrcweir			Text [ en-US ] = "Converts a number from one measurement system to another";
1400*cdf0e10cSrcweir		};
1401*cdf0e10cSrcweir
1402*cdf0e10cSrcweir		String 2 // name of parameter 1			Convert_add
1403*cdf0e10cSrcweir		{
1404*cdf0e10cSrcweir			Text [ en-US ] = "Number";
1405*cdf0e10cSrcweir		};
1406*cdf0e10cSrcweir
1407*cdf0e10cSrcweir		String 3 // description of parameter 1	Convert_add
1408*cdf0e10cSrcweir		{
1409*cdf0e10cSrcweir			Text [ en-US ] = "The number";
1410*cdf0e10cSrcweir		};
1411*cdf0e10cSrcweir
1412*cdf0e10cSrcweir		String 4 // name of parameter 2			Convert_add
1413*cdf0e10cSrcweir		{
1414*cdf0e10cSrcweir			Text [ en-US ] = "From unit";
1415*cdf0e10cSrcweir		};
1416*cdf0e10cSrcweir
1417*cdf0e10cSrcweir		String 5 // description of parameter 2	Convert_add
1418*cdf0e10cSrcweir		{
1419*cdf0e10cSrcweir			Text [ en-US ] = "Unit of measure for number";
1420*cdf0e10cSrcweir		};
1421*cdf0e10cSrcweir
1422*cdf0e10cSrcweir		String 6 // name of parameter 3			Convert_add
1423*cdf0e10cSrcweir		{
1424*cdf0e10cSrcweir			Text [ en-US ] = "To unit";
1425*cdf0e10cSrcweir		};
1426*cdf0e10cSrcweir
1427*cdf0e10cSrcweir		String 7 // description of parameter 3	Convert_add
1428*cdf0e10cSrcweir		{
1429*cdf0e10cSrcweir			Text [ en-US ] = "Unit of measure for the result";
1430*cdf0e10cSrcweir		};
1431*cdf0e10cSrcweir	};
1432*cdf0e10cSrcweir
1433*cdf0e10cSrcweir	Resource ANALYSIS_Amordegrc
1434*cdf0e10cSrcweir	{
1435*cdf0e10cSrcweir		String 1	// description Amordegrc
1436*cdf0e10cSrcweir		{
1437*cdf0e10cSrcweir			Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1438*cdf0e10cSrcweir		};
1439*cdf0e10cSrcweir
1440*cdf0e10cSrcweir		String 2 // name of parameter 1			Amordegrc
1441*cdf0e10cSrcweir		{
1442*cdf0e10cSrcweir			Text [ en-US ] = "Cost";
1443*cdf0e10cSrcweir		};
1444*cdf0e10cSrcweir
1445*cdf0e10cSrcweir		String 3 // description of parameter 1	Amordegrc
1446*cdf0e10cSrcweir		{
1447*cdf0e10cSrcweir			Text [ en-US ] = "Cost of the asset";
1448*cdf0e10cSrcweir		};
1449*cdf0e10cSrcweir
1450*cdf0e10cSrcweir		String 4 // name of parameter 2			Amordegrc
1451*cdf0e10cSrcweir		{
1452*cdf0e10cSrcweir			Text [ en-US ] = "Date purchased";
1453*cdf0e10cSrcweir		};
1454*cdf0e10cSrcweir
1455*cdf0e10cSrcweir		String 5 // description of parameter 2	Amordegrc
1456*cdf0e10cSrcweir		{
1457*cdf0e10cSrcweir			Text [ en-US ] = "Purchase date of the asset";
1458*cdf0e10cSrcweir		};
1459*cdf0e10cSrcweir
1460*cdf0e10cSrcweir		String 6 // name of parameter 3			Amordegrc
1461*cdf0e10cSrcweir		{
1462*cdf0e10cSrcweir			Text [ en-US ] = "First period";
1463*cdf0e10cSrcweir		};
1464*cdf0e10cSrcweir
1465*cdf0e10cSrcweir		String 7 // description of parameter 3	Amordegrc
1466*cdf0e10cSrcweir		{
1467*cdf0e10cSrcweir			Text [ en-US ] = "Date the first period ends";
1468*cdf0e10cSrcweir		};
1469*cdf0e10cSrcweir
1470*cdf0e10cSrcweir		String 8 // name of parameter 4			Amordegrc
1471*cdf0e10cSrcweir		{
1472*cdf0e10cSrcweir			Text [ en-US ] = "Salvage";
1473*cdf0e10cSrcweir		};
1474*cdf0e10cSrcweir
1475*cdf0e10cSrcweir		String 9 // description of parameter 4	Amordegrc
1476*cdf0e10cSrcweir		{
1477*cdf0e10cSrcweir			Text [ en-US ] = "Salvage value of an asset at the end of its life";
1478*cdf0e10cSrcweir		};
1479*cdf0e10cSrcweir
1480*cdf0e10cSrcweir		String 10 // name of parameter 5		Amordegrc
1481*cdf0e10cSrcweir		{
1482*cdf0e10cSrcweir			Text [ en-US ] = "Period";
1483*cdf0e10cSrcweir		};
1484*cdf0e10cSrcweir
1485*cdf0e10cSrcweir		String 11 // description of parameter 5	Amordegrc
1486*cdf0e10cSrcweir		{
1487*cdf0e10cSrcweir			Text [ en-US ] = "The period";
1488*cdf0e10cSrcweir		};
1489*cdf0e10cSrcweir
1490*cdf0e10cSrcweir		String 12 // name of parameter 6		Amordegrc
1491*cdf0e10cSrcweir		{
1492*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
1493*cdf0e10cSrcweir		};
1494*cdf0e10cSrcweir
1495*cdf0e10cSrcweir		String 13 // description of parameter 6	Amordegrc
1496*cdf0e10cSrcweir		{
1497*cdf0e10cSrcweir			Text [ en-US ] = "The rate of depreciation";
1498*cdf0e10cSrcweir		};
1499*cdf0e10cSrcweir
1500*cdf0e10cSrcweir		String 14 // name of parameter 7		Amordegrc
1501*cdf0e10cSrcweir		{
1502*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1503*cdf0e10cSrcweir		};
1504*cdf0e10cSrcweir
1505*cdf0e10cSrcweir		String 15 // description of parameter 7	Amordegrc
1506*cdf0e10cSrcweir		{
1507*cdf0e10cSrcweir			Text [ en-US ] = "The year basis to be used";
1508*cdf0e10cSrcweir		};
1509*cdf0e10cSrcweir	};
1510*cdf0e10cSrcweir
1511*cdf0e10cSrcweir	Resource ANALYSIS_Amorlinc
1512*cdf0e10cSrcweir	{
1513*cdf0e10cSrcweir		String 1	// description Amorlinc
1514*cdf0e10cSrcweir		{
1515*cdf0e10cSrcweir			Text [ en-US ] = "Returns the prorated linear depreciation of an asset for each accounting period";
1516*cdf0e10cSrcweir		};
1517*cdf0e10cSrcweir
1518*cdf0e10cSrcweir		String 2 // name of parameter 1			Amorlinc
1519*cdf0e10cSrcweir		{
1520*cdf0e10cSrcweir			Text [ en-US ] = "Cost";
1521*cdf0e10cSrcweir		};
1522*cdf0e10cSrcweir
1523*cdf0e10cSrcweir		String 3 // description of parameter 1	Amorlinc
1524*cdf0e10cSrcweir		{
1525*cdf0e10cSrcweir			Text [ en-US ] = "Cost of the asset";
1526*cdf0e10cSrcweir		};
1527*cdf0e10cSrcweir
1528*cdf0e10cSrcweir		String 4 // name of parameter 2			Amorlinc
1529*cdf0e10cSrcweir		{
1530*cdf0e10cSrcweir			Text [ en-US ] = "Date purchased";
1531*cdf0e10cSrcweir		};
1532*cdf0e10cSrcweir
1533*cdf0e10cSrcweir		String 5 // description of parameter 2	Amorlinc
1534*cdf0e10cSrcweir		{
1535*cdf0e10cSrcweir			Text [ en-US ] = "Purchase date of the asset";
1536*cdf0e10cSrcweir		};
1537*cdf0e10cSrcweir
1538*cdf0e10cSrcweir		String 6 // name of parameter 3			Amorlinc
1539*cdf0e10cSrcweir		{
1540*cdf0e10cSrcweir			Text [ en-US ] = "First period";
1541*cdf0e10cSrcweir		};
1542*cdf0e10cSrcweir
1543*cdf0e10cSrcweir		String 7 // description of parameter 3	Amorlinc
1544*cdf0e10cSrcweir		{
1545*cdf0e10cSrcweir			Text [ en-US ] = "The date the first period ends";
1546*cdf0e10cSrcweir		};
1547*cdf0e10cSrcweir
1548*cdf0e10cSrcweir		String 8 // name of parameter 4			Amorlinc
1549*cdf0e10cSrcweir		{
1550*cdf0e10cSrcweir			Text [ en-US ] = "Salvage";
1551*cdf0e10cSrcweir		};
1552*cdf0e10cSrcweir
1553*cdf0e10cSrcweir		String 9 // description of parameter 4	Amorlinc
1554*cdf0e10cSrcweir		{
1555*cdf0e10cSrcweir			Text [ en-US ] = "The salvage value of an asset at the end of its life";
1556*cdf0e10cSrcweir		};
1557*cdf0e10cSrcweir
1558*cdf0e10cSrcweir		String 10 // name of parameter 5		Amorlinc
1559*cdf0e10cSrcweir		{
1560*cdf0e10cSrcweir			Text [ en-US ] = "Period";
1561*cdf0e10cSrcweir		};
1562*cdf0e10cSrcweir
1563*cdf0e10cSrcweir		String 11 // description of parameter 5	Amorlinc
1564*cdf0e10cSrcweir		{
1565*cdf0e10cSrcweir			Text [ en-US ] = "The period";
1566*cdf0e10cSrcweir		};
1567*cdf0e10cSrcweir
1568*cdf0e10cSrcweir		String 12 // name of parameter 6		Amorlinc
1569*cdf0e10cSrcweir		{
1570*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
1571*cdf0e10cSrcweir		};
1572*cdf0e10cSrcweir
1573*cdf0e10cSrcweir		String 13 // description of parameter 6	Amorlinc
1574*cdf0e10cSrcweir		{
1575*cdf0e10cSrcweir			Text [ en-US ] = "The rate of depreciation";
1576*cdf0e10cSrcweir		};
1577*cdf0e10cSrcweir
1578*cdf0e10cSrcweir		String 14 // name of parameter 7		Amorlinc
1579*cdf0e10cSrcweir		{
1580*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1581*cdf0e10cSrcweir		};
1582*cdf0e10cSrcweir
1583*cdf0e10cSrcweir		String 15 // description of parameter 7	Amorlinc
1584*cdf0e10cSrcweir		{
1585*cdf0e10cSrcweir			Text [ en-US ] = "The year basis to be used";
1586*cdf0e10cSrcweir		};
1587*cdf0e10cSrcweir	};
1588*cdf0e10cSrcweir
1589*cdf0e10cSrcweir	Resource ANALYSIS_Accrint
1590*cdf0e10cSrcweir	{
1591*cdf0e10cSrcweir		String 1	// description Accrint
1592*cdf0e10cSrcweir		{
1593*cdf0e10cSrcweir			Text [ en-US ] = "Returns the accrued interest for a security that pays periodic interest";
1594*cdf0e10cSrcweir		};
1595*cdf0e10cSrcweir
1596*cdf0e10cSrcweir		String 2 // name of parameter 1			Accrint
1597*cdf0e10cSrcweir		{
1598*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
1599*cdf0e10cSrcweir		};
1600*cdf0e10cSrcweir
1601*cdf0e10cSrcweir		String 3 // description of parameter 1	Accrint
1602*cdf0e10cSrcweir		{
1603*cdf0e10cSrcweir			Text [ en-US ] = "Issue date of the security";
1604*cdf0e10cSrcweir		};
1605*cdf0e10cSrcweir
1606*cdf0e10cSrcweir		String 4 // name of parameter 2			Accrint
1607*cdf0e10cSrcweir		{
1608*cdf0e10cSrcweir			Text [ en-US ] = "First interest";
1609*cdf0e10cSrcweir		};
1610*cdf0e10cSrcweir
1611*cdf0e10cSrcweir		String 5 // description of parameter 2	Accrint
1612*cdf0e10cSrcweir		{
1613*cdf0e10cSrcweir			Text [ en-US ] = "First interest date of the security";
1614*cdf0e10cSrcweir		};
1615*cdf0e10cSrcweir
1616*cdf0e10cSrcweir		String 6 // name of parameter 3			Accrint
1617*cdf0e10cSrcweir		{
1618*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
1619*cdf0e10cSrcweir		};
1620*cdf0e10cSrcweir
1621*cdf0e10cSrcweir		String 7 // description of parameter 3	Accrint
1622*cdf0e10cSrcweir		{
1623*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
1624*cdf0e10cSrcweir		};
1625*cdf0e10cSrcweir
1626*cdf0e10cSrcweir		String 8 // name of parameter 4			Accrint
1627*cdf0e10cSrcweir		{
1628*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
1629*cdf0e10cSrcweir		};
1630*cdf0e10cSrcweir
1631*cdf0e10cSrcweir		String 9 // description of parameter 4	Accrint
1632*cdf0e10cSrcweir		{
1633*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
1634*cdf0e10cSrcweir		};
1635*cdf0e10cSrcweir
1636*cdf0e10cSrcweir		String 10 // name of parameter 5		Accrint
1637*cdf0e10cSrcweir		{
1638*cdf0e10cSrcweir			Text [ en-US ] = "Par";
1639*cdf0e10cSrcweir		};
1640*cdf0e10cSrcweir
1641*cdf0e10cSrcweir		String 11 // description of parameter 5	Accrint
1642*cdf0e10cSrcweir		{
1643*cdf0e10cSrcweir			Text [ en-US ] = "The par value";
1644*cdf0e10cSrcweir		};
1645*cdf0e10cSrcweir
1646*cdf0e10cSrcweir		String 12 // name of parameter 6		Accrint
1647*cdf0e10cSrcweir		{
1648*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
1649*cdf0e10cSrcweir		};
1650*cdf0e10cSrcweir
1651*cdf0e10cSrcweir		String 13 // description of parameter 6	Accrint
1652*cdf0e10cSrcweir		{
1653*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
1654*cdf0e10cSrcweir		};
1655*cdf0e10cSrcweir
1656*cdf0e10cSrcweir		String 14 // name of parameter 7		Accrint
1657*cdf0e10cSrcweir		{
1658*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1659*cdf0e10cSrcweir		};
1660*cdf0e10cSrcweir
1661*cdf0e10cSrcweir		String 15 // description of parameter 7	Accrint
1662*cdf0e10cSrcweir		{
1663*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
1664*cdf0e10cSrcweir		};
1665*cdf0e10cSrcweir	};
1666*cdf0e10cSrcweir
1667*cdf0e10cSrcweir	Resource ANALYSIS_Accrintm
1668*cdf0e10cSrcweir	{
1669*cdf0e10cSrcweir		String 1	// description Accrintm
1670*cdf0e10cSrcweir		{
1671*cdf0e10cSrcweir			Text [ en-US ] = "Returns the accrued interest for a security that pays interest at maturity";
1672*cdf0e10cSrcweir		};
1673*cdf0e10cSrcweir
1674*cdf0e10cSrcweir		String 2 // name of parameter 1			Accrintm
1675*cdf0e10cSrcweir		{
1676*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
1677*cdf0e10cSrcweir		};
1678*cdf0e10cSrcweir
1679*cdf0e10cSrcweir		String 3 // description of parameter 1	Accrintm
1680*cdf0e10cSrcweir		{
1681*cdf0e10cSrcweir			Text [ en-US ] = "The issue date";
1682*cdf0e10cSrcweir		};
1683*cdf0e10cSrcweir
1684*cdf0e10cSrcweir		String 4 // name of parameter 2			Accrintm
1685*cdf0e10cSrcweir		{
1686*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
1687*cdf0e10cSrcweir		};
1688*cdf0e10cSrcweir
1689*cdf0e10cSrcweir		String 5 // description of parameter 2	Accrintm
1690*cdf0e10cSrcweir		{
1691*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
1692*cdf0e10cSrcweir		};
1693*cdf0e10cSrcweir
1694*cdf0e10cSrcweir		String 6 // name of parameter 3			Accrintm
1695*cdf0e10cSrcweir		{
1696*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
1697*cdf0e10cSrcweir		};
1698*cdf0e10cSrcweir
1699*cdf0e10cSrcweir		String 7 // description of parameter 3	Accrintm
1700*cdf0e10cSrcweir		{
1701*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
1702*cdf0e10cSrcweir		};
1703*cdf0e10cSrcweir
1704*cdf0e10cSrcweir		String 8 // name of parameter 4			Accrintm
1705*cdf0e10cSrcweir		{
1706*cdf0e10cSrcweir			Text [ en-US ] = "Par";
1707*cdf0e10cSrcweir		};
1708*cdf0e10cSrcweir
1709*cdf0e10cSrcweir		String 9 // description of parameter 4	Accrintm
1710*cdf0e10cSrcweir		{
1711*cdf0e10cSrcweir			Text [ en-US ] = "The par value";
1712*cdf0e10cSrcweir		};
1713*cdf0e10cSrcweir
1714*cdf0e10cSrcweir		String 10 // name of parameter 5		Accrintm
1715*cdf0e10cSrcweir		{
1716*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1717*cdf0e10cSrcweir		};
1718*cdf0e10cSrcweir
1719*cdf0e10cSrcweir		String 11 // description of parameter 5	Accrintm
1720*cdf0e10cSrcweir		{
1721*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
1722*cdf0e10cSrcweir		};
1723*cdf0e10cSrcweir	};
1724*cdf0e10cSrcweir
1725*cdf0e10cSrcweir	Resource ANALYSIS_Received
1726*cdf0e10cSrcweir	{
1727*cdf0e10cSrcweir		String 1	// description Received
1728*cdf0e10cSrcweir		{
1729*cdf0e10cSrcweir			Text [ en-US ] = "Returns the amount paid out at maturity for a fully invested security";
1730*cdf0e10cSrcweir		};
1731*cdf0e10cSrcweir
1732*cdf0e10cSrcweir		String 2 // name of parameter 1			Received
1733*cdf0e10cSrcweir		{
1734*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
1735*cdf0e10cSrcweir		};
1736*cdf0e10cSrcweir
1737*cdf0e10cSrcweir		String 3 // description of parameter 1	Received
1738*cdf0e10cSrcweir		{
1739*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
1740*cdf0e10cSrcweir		};
1741*cdf0e10cSrcweir
1742*cdf0e10cSrcweir		String 4 // name of parameter 2			Received
1743*cdf0e10cSrcweir		{
1744*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
1745*cdf0e10cSrcweir		};
1746*cdf0e10cSrcweir
1747*cdf0e10cSrcweir		String 5 // description of parameter 2	Received
1748*cdf0e10cSrcweir		{
1749*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
1750*cdf0e10cSrcweir		};
1751*cdf0e10cSrcweir
1752*cdf0e10cSrcweir		String 6 // name of parameter 3			Received
1753*cdf0e10cSrcweir		{
1754*cdf0e10cSrcweir			Text [ en-US ] = "Investment";
1755*cdf0e10cSrcweir		};
1756*cdf0e10cSrcweir
1757*cdf0e10cSrcweir		String 7 // description of parameter 3	Received
1758*cdf0e10cSrcweir		{
1759*cdf0e10cSrcweir			Text [ en-US ] = "The investment";
1760*cdf0e10cSrcweir		};
1761*cdf0e10cSrcweir
1762*cdf0e10cSrcweir		String 8 // name of parameter 4			Received
1763*cdf0e10cSrcweir		{
1764*cdf0e10cSrcweir			Text [ en-US ] = "Discount";
1765*cdf0e10cSrcweir		};
1766*cdf0e10cSrcweir
1767*cdf0e10cSrcweir		String 9 // description of parameter 4	Received
1768*cdf0e10cSrcweir		{
1769*cdf0e10cSrcweir			Text [ en-US ] = "The discount";
1770*cdf0e10cSrcweir		};
1771*cdf0e10cSrcweir
1772*cdf0e10cSrcweir		String 10 // name of parameter 5		Received
1773*cdf0e10cSrcweir		{
1774*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1775*cdf0e10cSrcweir		};
1776*cdf0e10cSrcweir
1777*cdf0e10cSrcweir		String 11 // description of parameter 5	Received
1778*cdf0e10cSrcweir		{
1779*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
1780*cdf0e10cSrcweir		};
1781*cdf0e10cSrcweir	};
1782*cdf0e10cSrcweir
1783*cdf0e10cSrcweir	Resource ANALYSIS_Disc
1784*cdf0e10cSrcweir	{
1785*cdf0e10cSrcweir		String 1	// description Disc
1786*cdf0e10cSrcweir		{
1787*cdf0e10cSrcweir			Text [ en-US ] = "Returns the discount rate for a security";
1788*cdf0e10cSrcweir		};
1789*cdf0e10cSrcweir
1790*cdf0e10cSrcweir		String 2 // name of parameter 1			Disc
1791*cdf0e10cSrcweir		{
1792*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
1793*cdf0e10cSrcweir		};
1794*cdf0e10cSrcweir
1795*cdf0e10cSrcweir		String 3 // description of parameter 1	Disc
1796*cdf0e10cSrcweir		{
1797*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
1798*cdf0e10cSrcweir		};
1799*cdf0e10cSrcweir
1800*cdf0e10cSrcweir		String 4 // name of parameter 2			Disc
1801*cdf0e10cSrcweir		{
1802*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
1803*cdf0e10cSrcweir		};
1804*cdf0e10cSrcweir
1805*cdf0e10cSrcweir		String 5 // description of parameter 2	Disc
1806*cdf0e10cSrcweir		{
1807*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
1808*cdf0e10cSrcweir		};
1809*cdf0e10cSrcweir
1810*cdf0e10cSrcweir		String 6 // name of parameter 3			Disc
1811*cdf0e10cSrcweir		{
1812*cdf0e10cSrcweir			Text [ en-US ] = "Price";
1813*cdf0e10cSrcweir		};
1814*cdf0e10cSrcweir
1815*cdf0e10cSrcweir		String 7 // description of parameter 3	Disc
1816*cdf0e10cSrcweir		{
1817*cdf0e10cSrcweir			Text [ en-US ] = "The price";
1818*cdf0e10cSrcweir		};
1819*cdf0e10cSrcweir
1820*cdf0e10cSrcweir		String 8 // name of parameter 4			Disc
1821*cdf0e10cSrcweir		{
1822*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
1823*cdf0e10cSrcweir		};
1824*cdf0e10cSrcweir
1825*cdf0e10cSrcweir		String 9 // description of parameter 4	Disc
1826*cdf0e10cSrcweir		{
1827*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
1828*cdf0e10cSrcweir		};
1829*cdf0e10cSrcweir
1830*cdf0e10cSrcweir		String 10 // name of parameter 5		Disc
1831*cdf0e10cSrcweir		{
1832*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1833*cdf0e10cSrcweir		};
1834*cdf0e10cSrcweir
1835*cdf0e10cSrcweir		String 11 // description of parameter 5	Disc
1836*cdf0e10cSrcweir		{
1837*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
1838*cdf0e10cSrcweir		};
1839*cdf0e10cSrcweir	};
1840*cdf0e10cSrcweir
1841*cdf0e10cSrcweir	Resource ANALYSIS_Duration
1842*cdf0e10cSrcweir	{
1843*cdf0e10cSrcweir		String 1	// description Duration
1844*cdf0e10cSrcweir		{
1845*cdf0e10cSrcweir			Text [ en-US ] = "Returns the annual Macaulay duration of a security with periodic interest payments";
1846*cdf0e10cSrcweir		};
1847*cdf0e10cSrcweir
1848*cdf0e10cSrcweir		String 2 // name of parameter 1			Duration
1849*cdf0e10cSrcweir		{
1850*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
1851*cdf0e10cSrcweir		};
1852*cdf0e10cSrcweir
1853*cdf0e10cSrcweir		String 3 // description of parameter 1	Duration
1854*cdf0e10cSrcweir		{
1855*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
1856*cdf0e10cSrcweir		};
1857*cdf0e10cSrcweir
1858*cdf0e10cSrcweir		String 4 // name of parameter 2			Duration
1859*cdf0e10cSrcweir		{
1860*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
1861*cdf0e10cSrcweir		};
1862*cdf0e10cSrcweir
1863*cdf0e10cSrcweir		String 5 // description of parameter 2	Duration
1864*cdf0e10cSrcweir		{
1865*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
1866*cdf0e10cSrcweir		};
1867*cdf0e10cSrcweir
1868*cdf0e10cSrcweir		String 6 // name of parameter 3			Duration
1869*cdf0e10cSrcweir		{
1870*cdf0e10cSrcweir			Text [ en-US ] = "Coupon";
1871*cdf0e10cSrcweir		};
1872*cdf0e10cSrcweir
1873*cdf0e10cSrcweir		String 7 // description of parameter 3	Duration
1874*cdf0e10cSrcweir		{
1875*cdf0e10cSrcweir			Text [ en-US ] = "The coupon rate";
1876*cdf0e10cSrcweir		};
1877*cdf0e10cSrcweir
1878*cdf0e10cSrcweir		String 8 // name of parameter 4			Duration
1879*cdf0e10cSrcweir		{
1880*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
1881*cdf0e10cSrcweir		};
1882*cdf0e10cSrcweir
1883*cdf0e10cSrcweir		String 9 // description of parameter 4	Duration
1884*cdf0e10cSrcweir		{
1885*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
1886*cdf0e10cSrcweir		};
1887*cdf0e10cSrcweir
1888*cdf0e10cSrcweir		String 10 // name of parameter 5		Duration
1889*cdf0e10cSrcweir		{
1890*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
1891*cdf0e10cSrcweir		};
1892*cdf0e10cSrcweir
1893*cdf0e10cSrcweir		String 11 // description of parameter 5	Duration
1894*cdf0e10cSrcweir		{
1895*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
1896*cdf0e10cSrcweir		};
1897*cdf0e10cSrcweir
1898*cdf0e10cSrcweir		String 12 // name of parameter 6		Duration
1899*cdf0e10cSrcweir		{
1900*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
1901*cdf0e10cSrcweir		};
1902*cdf0e10cSrcweir
1903*cdf0e10cSrcweir		String 13 // description of parameter 6	Duration
1904*cdf0e10cSrcweir		{
1905*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
1906*cdf0e10cSrcweir		};
1907*cdf0e10cSrcweir	};
1908*cdf0e10cSrcweir
1909*cdf0e10cSrcweir    Resource ANALYSIS_Effect
1910*cdf0e10cSrcweir	{
1911*cdf0e10cSrcweir		String 1	// description Effect_add
1912*cdf0e10cSrcweir		{
1913*cdf0e10cSrcweir			Text [ en-US ] = "Returns the effective annual interest rate";
1914*cdf0e10cSrcweir		};
1915*cdf0e10cSrcweir
1916*cdf0e10cSrcweir		String 2 // name of parameter 1			Effect_add
1917*cdf0e10cSrcweir		{
1918*cdf0e10cSrcweir			Text [ en-US ] = "Nominal rate";
1919*cdf0e10cSrcweir		};
1920*cdf0e10cSrcweir
1921*cdf0e10cSrcweir		String 3 // description of parameter 1	Effect_add
1922*cdf0e10cSrcweir		{
1923*cdf0e10cSrcweir			Text [ en-US ] = "The nominal rate";
1924*cdf0e10cSrcweir		};
1925*cdf0e10cSrcweir
1926*cdf0e10cSrcweir		String 4 // name of parameter 2			Effect_add
1927*cdf0e10cSrcweir		{
1928*cdf0e10cSrcweir			Text [ en-US ] = "Npery";
1929*cdf0e10cSrcweir		};
1930*cdf0e10cSrcweir
1931*cdf0e10cSrcweir		String 5 // description of parameter 2	Effect_add
1932*cdf0e10cSrcweir		{
1933*cdf0e10cSrcweir			Text [ en-US ] = "The periods";
1934*cdf0e10cSrcweir		};
1935*cdf0e10cSrcweir	};
1936*cdf0e10cSrcweir
1937*cdf0e10cSrcweir    Resource ANALYSIS_Cumprinc
1938*cdf0e10cSrcweir	{
1939*cdf0e10cSrcweir		String 1	// description Cumprinc_add
1940*cdf0e10cSrcweir		{
1941*cdf0e10cSrcweir			Text [ en-US ] = "Returns the cumulative principal on a loan to be paid between two periods";
1942*cdf0e10cSrcweir		};
1943*cdf0e10cSrcweir
1944*cdf0e10cSrcweir		String 2 // name of parameter 1			Cumprinc_add
1945*cdf0e10cSrcweir		{
1946*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
1947*cdf0e10cSrcweir		};
1948*cdf0e10cSrcweir
1949*cdf0e10cSrcweir		String 3 // description of parameter 1	Cumprinc_add
1950*cdf0e10cSrcweir		{
1951*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
1952*cdf0e10cSrcweir		};
1953*cdf0e10cSrcweir
1954*cdf0e10cSrcweir		String 4 // name of parameter 2			Cumprinc_add
1955*cdf0e10cSrcweir		{
1956*cdf0e10cSrcweir			Text [ en-US ] = "Nper";
1957*cdf0e10cSrcweir		};
1958*cdf0e10cSrcweir
1959*cdf0e10cSrcweir		String 5 // description of parameter 2	Cumprinc_add
1960*cdf0e10cSrcweir		{
1961*cdf0e10cSrcweir			Text [ en-US ] = "Number of payment periods";
1962*cdf0e10cSrcweir		};
1963*cdf0e10cSrcweir
1964*cdf0e10cSrcweir		String 6 // name of parameter 3			Cumprinc_add
1965*cdf0e10cSrcweir		{
1966*cdf0e10cSrcweir			Text [ en-US ] = "Pv";
1967*cdf0e10cSrcweir		};
1968*cdf0e10cSrcweir
1969*cdf0e10cSrcweir		String 7 // description of parameter 3	Cumprinc_add
1970*cdf0e10cSrcweir		{
1971*cdf0e10cSrcweir			Text [ en-US ] = "The present value";
1972*cdf0e10cSrcweir		};
1973*cdf0e10cSrcweir
1974*cdf0e10cSrcweir		String 8 // name of parameter 4			Cumprinc_add
1975*cdf0e10cSrcweir		{
1976*cdf0e10cSrcweir			Text [ en-US ] = "Start period";
1977*cdf0e10cSrcweir		};
1978*cdf0e10cSrcweir
1979*cdf0e10cSrcweir		String 9 // description of parameter 4	Cumprinc_add
1980*cdf0e10cSrcweir		{
1981*cdf0e10cSrcweir			Text [ en-US ] = "The start period";
1982*cdf0e10cSrcweir		};
1983*cdf0e10cSrcweir
1984*cdf0e10cSrcweir		String 10 // name of parameter 5		Cumprinc_add
1985*cdf0e10cSrcweir		{
1986*cdf0e10cSrcweir			Text [ en-US ] = "End period";
1987*cdf0e10cSrcweir		};
1988*cdf0e10cSrcweir
1989*cdf0e10cSrcweir		String 11 // description of parameter 5	Cumprinc_add
1990*cdf0e10cSrcweir		{
1991*cdf0e10cSrcweir			Text [ en-US ] = "The end period";
1992*cdf0e10cSrcweir		};
1993*cdf0e10cSrcweir
1994*cdf0e10cSrcweir		String 12 // name of parameter 6		Cumprinc_add
1995*cdf0e10cSrcweir		{
1996*cdf0e10cSrcweir			Text [ en-US ] = "Type";
1997*cdf0e10cSrcweir		};
1998*cdf0e10cSrcweir
1999*cdf0e10cSrcweir		String 13 // description of parameter 6	Cumprinc_add
2000*cdf0e10cSrcweir		{
2001*cdf0e10cSrcweir			Text [ en-US ] = "The type of maturity";
2002*cdf0e10cSrcweir		};
2003*cdf0e10cSrcweir	};
2004*cdf0e10cSrcweir
2005*cdf0e10cSrcweir    Resource ANALYSIS_Cumipmt
2006*cdf0e10cSrcweir	{
2007*cdf0e10cSrcweir		String 1	// description Cumipmt_add
2008*cdf0e10cSrcweir		{
2009*cdf0e10cSrcweir			Text [ en-US ] = "Returns the cumulative interest to be paid between two periods";
2010*cdf0e10cSrcweir		};
2011*cdf0e10cSrcweir
2012*cdf0e10cSrcweir		String 2 // name of parameter 1			Cumipmt_add
2013*cdf0e10cSrcweir		{
2014*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2015*cdf0e10cSrcweir		};
2016*cdf0e10cSrcweir
2017*cdf0e10cSrcweir		String 3 // description of parameter 1	Cumipmt_add
2018*cdf0e10cSrcweir		{
2019*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2020*cdf0e10cSrcweir		};
2021*cdf0e10cSrcweir
2022*cdf0e10cSrcweir		String 4 // name of parameter 2			Cumipmt_add
2023*cdf0e10cSrcweir		{
2024*cdf0e10cSrcweir			Text [ en-US ] = "Nper";
2025*cdf0e10cSrcweir		};
2026*cdf0e10cSrcweir
2027*cdf0e10cSrcweir		String 5 // description of parameter 2	Cumipmt_add
2028*cdf0e10cSrcweir		{
2029*cdf0e10cSrcweir			Text [ en-US ] = "Number of payment periods";
2030*cdf0e10cSrcweir		};
2031*cdf0e10cSrcweir
2032*cdf0e10cSrcweir		String 6 // name of parameter 3			Cumipmt_add
2033*cdf0e10cSrcweir		{
2034*cdf0e10cSrcweir			Text [ en-US ] = "Pv";
2035*cdf0e10cSrcweir		};
2036*cdf0e10cSrcweir
2037*cdf0e10cSrcweir		String 7 // description of parameter 3	Cumipmt_add
2038*cdf0e10cSrcweir		{
2039*cdf0e10cSrcweir			Text [ en-US ] = "The present value";
2040*cdf0e10cSrcweir		};
2041*cdf0e10cSrcweir
2042*cdf0e10cSrcweir		String 8 // name of parameter 4			Cumipmt_add
2043*cdf0e10cSrcweir		{
2044*cdf0e10cSrcweir			Text [ en-US ] = "Start period";
2045*cdf0e10cSrcweir		};
2046*cdf0e10cSrcweir
2047*cdf0e10cSrcweir		String 9 // description of parameter 4	Cumipmt_add
2048*cdf0e10cSrcweir		{
2049*cdf0e10cSrcweir			Text [ en-US ] = "The start period";
2050*cdf0e10cSrcweir		};
2051*cdf0e10cSrcweir
2052*cdf0e10cSrcweir		String 10 // name of parameter 5		Cumipmt_add
2053*cdf0e10cSrcweir		{
2054*cdf0e10cSrcweir			Text [ en-US ] = "End period";
2055*cdf0e10cSrcweir		};
2056*cdf0e10cSrcweir
2057*cdf0e10cSrcweir		String 11 // description of parameter 5	Cumipmt_add
2058*cdf0e10cSrcweir		{
2059*cdf0e10cSrcweir			Text [ en-US ] = "The end period";
2060*cdf0e10cSrcweir		};
2061*cdf0e10cSrcweir
2062*cdf0e10cSrcweir		String 12 // name of parameter 6		Cumipmt_add
2063*cdf0e10cSrcweir		{
2064*cdf0e10cSrcweir			Text [ en-US ] = "Type";
2065*cdf0e10cSrcweir		};
2066*cdf0e10cSrcweir
2067*cdf0e10cSrcweir		String 13 // description of parameter 6	Cumipmt_add
2068*cdf0e10cSrcweir		{
2069*cdf0e10cSrcweir			Text [ en-US ] = "The type of maturity";
2070*cdf0e10cSrcweir		};
2071*cdf0e10cSrcweir	};
2072*cdf0e10cSrcweir
2073*cdf0e10cSrcweir	Resource ANALYSIS_Price
2074*cdf0e10cSrcweir	{
2075*cdf0e10cSrcweir		String 1	// description Price
2076*cdf0e10cSrcweir		{
2077*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays periodic interest";
2078*cdf0e10cSrcweir		};
2079*cdf0e10cSrcweir
2080*cdf0e10cSrcweir		String 2 // name of parameter 1			Price
2081*cdf0e10cSrcweir		{
2082*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2083*cdf0e10cSrcweir		};
2084*cdf0e10cSrcweir
2085*cdf0e10cSrcweir		String 3 // description of parameter 1	Price
2086*cdf0e10cSrcweir		{
2087*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2088*cdf0e10cSrcweir		};
2089*cdf0e10cSrcweir
2090*cdf0e10cSrcweir		String 4 // name of parameter 2			Price
2091*cdf0e10cSrcweir		{
2092*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2093*cdf0e10cSrcweir		};
2094*cdf0e10cSrcweir
2095*cdf0e10cSrcweir		String 5 // description of parameter 2	Price
2096*cdf0e10cSrcweir		{
2097*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2098*cdf0e10cSrcweir		};
2099*cdf0e10cSrcweir
2100*cdf0e10cSrcweir		String 6 // name of parameter 3			Price
2101*cdf0e10cSrcweir		{
2102*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2103*cdf0e10cSrcweir		};
2104*cdf0e10cSrcweir
2105*cdf0e10cSrcweir		String 7 // description of parameter 3	Price
2106*cdf0e10cSrcweir		{
2107*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2108*cdf0e10cSrcweir		};
2109*cdf0e10cSrcweir
2110*cdf0e10cSrcweir		String 8 // name of parameter 4			Price
2111*cdf0e10cSrcweir		{
2112*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
2113*cdf0e10cSrcweir		};
2114*cdf0e10cSrcweir
2115*cdf0e10cSrcweir		String 9 // description of parameter 4	Price
2116*cdf0e10cSrcweir		{
2117*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
2118*cdf0e10cSrcweir		};
2119*cdf0e10cSrcweir
2120*cdf0e10cSrcweir		String 10 // name of parameter 5		Price
2121*cdf0e10cSrcweir		{
2122*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2123*cdf0e10cSrcweir		};
2124*cdf0e10cSrcweir
2125*cdf0e10cSrcweir		String 11 // description of parameter 5	Price
2126*cdf0e10cSrcweir		{
2127*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2128*cdf0e10cSrcweir		};
2129*cdf0e10cSrcweir
2130*cdf0e10cSrcweir		String 12 // name of parameter 6		Price
2131*cdf0e10cSrcweir		{
2132*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
2133*cdf0e10cSrcweir		};
2134*cdf0e10cSrcweir
2135*cdf0e10cSrcweir		String 13 // description of parameter 6	Price
2136*cdf0e10cSrcweir		{
2137*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
2138*cdf0e10cSrcweir		};
2139*cdf0e10cSrcweir
2140*cdf0e10cSrcweir		String 14 // name of parameter 7		Price
2141*cdf0e10cSrcweir		{
2142*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2143*cdf0e10cSrcweir		};
2144*cdf0e10cSrcweir
2145*cdf0e10cSrcweir		String 15 // description of parameter 7	Price
2146*cdf0e10cSrcweir		{
2147*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2148*cdf0e10cSrcweir		};
2149*cdf0e10cSrcweir	};
2150*cdf0e10cSrcweir
2151*cdf0e10cSrcweir	Resource ANALYSIS_Pricedisc
2152*cdf0e10cSrcweir	{
2153*cdf0e10cSrcweir		String 1	// description Pricedisc
2154*cdf0e10cSrcweir		{
2155*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price per 100 currency units face value of a discounted security";
2156*cdf0e10cSrcweir		};
2157*cdf0e10cSrcweir
2158*cdf0e10cSrcweir		String 2 // name of parameter 1			Pricedisc
2159*cdf0e10cSrcweir		{
2160*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2161*cdf0e10cSrcweir		};
2162*cdf0e10cSrcweir
2163*cdf0e10cSrcweir		String 3 // description of parameter 1	Pricedisc
2164*cdf0e10cSrcweir		{
2165*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2166*cdf0e10cSrcweir		};
2167*cdf0e10cSrcweir
2168*cdf0e10cSrcweir		String 4 // name of parameter 2			Pricedisc
2169*cdf0e10cSrcweir		{
2170*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2171*cdf0e10cSrcweir		};
2172*cdf0e10cSrcweir
2173*cdf0e10cSrcweir		String 5 // description of parameter 2	Pricedisc
2174*cdf0e10cSrcweir		{
2175*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2176*cdf0e10cSrcweir		};
2177*cdf0e10cSrcweir
2178*cdf0e10cSrcweir		String 6 // name of parameter 3			Pricedisc
2179*cdf0e10cSrcweir		{
2180*cdf0e10cSrcweir			Text [ en-US ] = "Discount";
2181*cdf0e10cSrcweir		};
2182*cdf0e10cSrcweir
2183*cdf0e10cSrcweir		String 7 // description of parameter 3	Pricedisc
2184*cdf0e10cSrcweir		{
2185*cdf0e10cSrcweir			Text [ en-US ] = "The discount";
2186*cdf0e10cSrcweir		};
2187*cdf0e10cSrcweir
2188*cdf0e10cSrcweir		String 8 // name of parameter 4			Pricedisc
2189*cdf0e10cSrcweir		{
2190*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2191*cdf0e10cSrcweir		};
2192*cdf0e10cSrcweir
2193*cdf0e10cSrcweir		String 9 // description of parameter 4	Pricedisc
2194*cdf0e10cSrcweir		{
2195*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2196*cdf0e10cSrcweir		};
2197*cdf0e10cSrcweir
2198*cdf0e10cSrcweir		String 10 // name of parameter 5		Pricedisc
2199*cdf0e10cSrcweir		{
2200*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2201*cdf0e10cSrcweir		};
2202*cdf0e10cSrcweir
2203*cdf0e10cSrcweir		String 11 // description of parameter 5	Pricedisc
2204*cdf0e10cSrcweir		{
2205*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2206*cdf0e10cSrcweir		};
2207*cdf0e10cSrcweir	};
2208*cdf0e10cSrcweir
2209*cdf0e10cSrcweir	Resource ANALYSIS_Pricemat
2210*cdf0e10cSrcweir	{
2211*cdf0e10cSrcweir		String 1	// description Pricemat
2212*cdf0e10cSrcweir		{
2213*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price per 100 currency units face value of a security that pays interest at maturity";
2214*cdf0e10cSrcweir		};
2215*cdf0e10cSrcweir
2216*cdf0e10cSrcweir		String 2 // name of parameter 1			Pricemat
2217*cdf0e10cSrcweir		{
2218*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2219*cdf0e10cSrcweir		};
2220*cdf0e10cSrcweir
2221*cdf0e10cSrcweir		String 3 // description of parameter 1	Pricemat
2222*cdf0e10cSrcweir		{
2223*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2224*cdf0e10cSrcweir		};
2225*cdf0e10cSrcweir
2226*cdf0e10cSrcweir		String 4 // name of parameter 2			Pricemat
2227*cdf0e10cSrcweir		{
2228*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2229*cdf0e10cSrcweir		};
2230*cdf0e10cSrcweir
2231*cdf0e10cSrcweir		String 5 // description of parameter 2	Pricemat
2232*cdf0e10cSrcweir		{
2233*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2234*cdf0e10cSrcweir		};
2235*cdf0e10cSrcweir
2236*cdf0e10cSrcweir		String 6 // name of parameter 3			Pricemat
2237*cdf0e10cSrcweir		{
2238*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
2239*cdf0e10cSrcweir		};
2240*cdf0e10cSrcweir
2241*cdf0e10cSrcweir		String 7 // description of parameter 3	Pricemat
2242*cdf0e10cSrcweir		{
2243*cdf0e10cSrcweir			Text [ en-US ] = "The issue date";
2244*cdf0e10cSrcweir		};
2245*cdf0e10cSrcweir
2246*cdf0e10cSrcweir		String 8 // name of parameter 4			Pricemat
2247*cdf0e10cSrcweir		{
2248*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2249*cdf0e10cSrcweir		};
2250*cdf0e10cSrcweir
2251*cdf0e10cSrcweir		String 9 // description of parameter 4	Pricemat
2252*cdf0e10cSrcweir		{
2253*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2254*cdf0e10cSrcweir		};
2255*cdf0e10cSrcweir
2256*cdf0e10cSrcweir		String 10 // name of parameter 5		Pricemat
2257*cdf0e10cSrcweir		{
2258*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
2259*cdf0e10cSrcweir		};
2260*cdf0e10cSrcweir
2261*cdf0e10cSrcweir		String 11 // description of parameter 5	Pricemat
2262*cdf0e10cSrcweir		{
2263*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
2264*cdf0e10cSrcweir		};
2265*cdf0e10cSrcweir
2266*cdf0e10cSrcweir		String 12 // name of parameter 6		Pricemat
2267*cdf0e10cSrcweir		{
2268*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2269*cdf0e10cSrcweir		};
2270*cdf0e10cSrcweir
2271*cdf0e10cSrcweir		String 13 // description of parameter 6	Pricemat
2272*cdf0e10cSrcweir		{
2273*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2274*cdf0e10cSrcweir		};
2275*cdf0e10cSrcweir	};
2276*cdf0e10cSrcweir
2277*cdf0e10cSrcweir	Resource ANALYSIS_Mduration
2278*cdf0e10cSrcweir	{
2279*cdf0e10cSrcweir		String 1	// description Mduration
2280*cdf0e10cSrcweir		{
2281*cdf0e10cSrcweir			Text [ en-US ] = "Returns the Macaulay modified duration for a security with an assumed par value of 100 currency units";
2282*cdf0e10cSrcweir		};
2283*cdf0e10cSrcweir
2284*cdf0e10cSrcweir		String 2 // name of parameter 1			Mduration
2285*cdf0e10cSrcweir		{
2286*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2287*cdf0e10cSrcweir		};
2288*cdf0e10cSrcweir
2289*cdf0e10cSrcweir		String 3 // description of parameter 1	Mduration
2290*cdf0e10cSrcweir		{
2291*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2292*cdf0e10cSrcweir		};
2293*cdf0e10cSrcweir
2294*cdf0e10cSrcweir		String 4 // name of parameter 2			Mduration
2295*cdf0e10cSrcweir		{
2296*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2297*cdf0e10cSrcweir		};
2298*cdf0e10cSrcweir
2299*cdf0e10cSrcweir		String 5 // description of parameter 2	Mduration
2300*cdf0e10cSrcweir		{
2301*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2302*cdf0e10cSrcweir		};
2303*cdf0e10cSrcweir
2304*cdf0e10cSrcweir		String 6 // name of parameter 3			Mduration
2305*cdf0e10cSrcweir		{
2306*cdf0e10cSrcweir			Text [ en-US ] = "Coupon";
2307*cdf0e10cSrcweir		};
2308*cdf0e10cSrcweir
2309*cdf0e10cSrcweir		String 7 // description of parameter 3	Mduration
2310*cdf0e10cSrcweir		{
2311*cdf0e10cSrcweir			Text [ en-US ] = "The coupon rate";
2312*cdf0e10cSrcweir		};
2313*cdf0e10cSrcweir
2314*cdf0e10cSrcweir		String 8 // name of parameter 4			Mduration
2315*cdf0e10cSrcweir		{
2316*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
2317*cdf0e10cSrcweir		};
2318*cdf0e10cSrcweir
2319*cdf0e10cSrcweir		String 9 // description of parameter 4	Mduration
2320*cdf0e10cSrcweir		{
2321*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
2322*cdf0e10cSrcweir		};
2323*cdf0e10cSrcweir
2324*cdf0e10cSrcweir		String 10 // name of parameter 5		Mduration
2325*cdf0e10cSrcweir		{
2326*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
2327*cdf0e10cSrcweir		};
2328*cdf0e10cSrcweir
2329*cdf0e10cSrcweir		String 11 // description of parameter 5	Mduration
2330*cdf0e10cSrcweir		{
2331*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
2332*cdf0e10cSrcweir		};
2333*cdf0e10cSrcweir
2334*cdf0e10cSrcweir		String 12 // name of parameter 6		Mduration
2335*cdf0e10cSrcweir		{
2336*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2337*cdf0e10cSrcweir		};
2338*cdf0e10cSrcweir
2339*cdf0e10cSrcweir		String 13 // description of parameter 6	Mduration
2340*cdf0e10cSrcweir		{
2341*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2342*cdf0e10cSrcweir		};
2343*cdf0e10cSrcweir	};
2344*cdf0e10cSrcweir
2345*cdf0e10cSrcweir    Resource ANALYSIS_Nominal
2346*cdf0e10cSrcweir	{
2347*cdf0e10cSrcweir        String 1    // description Nominal_add
2348*cdf0e10cSrcweir		{
2349*cdf0e10cSrcweir			Text [ en-US ] = "Returns the annual nominal interest rate";
2350*cdf0e10cSrcweir		};
2351*cdf0e10cSrcweir
2352*cdf0e10cSrcweir        String 2 // name of parameter 1         Nominal_add
2353*cdf0e10cSrcweir		{
2354*cdf0e10cSrcweir			Text [ en-US ] = "Effective rate";
2355*cdf0e10cSrcweir		};
2356*cdf0e10cSrcweir
2357*cdf0e10cSrcweir        String 3 // description of parameter 1  Nominal_add
2358*cdf0e10cSrcweir		{
2359*cdf0e10cSrcweir			Text [ en-US ] = "The effective interest rate";
2360*cdf0e10cSrcweir		};
2361*cdf0e10cSrcweir
2362*cdf0e10cSrcweir        String 4 // name of parameter 2         Nominal_add
2363*cdf0e10cSrcweir		{
2364*cdf0e10cSrcweir			Text [ en-US ] = "Npery";
2365*cdf0e10cSrcweir		};
2366*cdf0e10cSrcweir
2367*cdf0e10cSrcweir        String 5 // description of parameter 2  Nominal_add
2368*cdf0e10cSrcweir		{
2369*cdf0e10cSrcweir			Text [ en-US ] = "The periods";
2370*cdf0e10cSrcweir		};
2371*cdf0e10cSrcweir	};
2372*cdf0e10cSrcweir
2373*cdf0e10cSrcweir	Resource ANALYSIS_Dollarfr
2374*cdf0e10cSrcweir	{
2375*cdf0e10cSrcweir		String 1	// description Dollarfr
2376*cdf0e10cSrcweir		{
2377*cdf0e10cSrcweir			Text [ en-US ] = "Converts a price expressed as a decimal into a price expressed as a fraction";
2378*cdf0e10cSrcweir		};
2379*cdf0e10cSrcweir
2380*cdf0e10cSrcweir		String 2 // name of parameter 1			Dollarfr
2381*cdf0e10cSrcweir		{
2382*cdf0e10cSrcweir			Text [ en-US ] = "Decimal dollar";
2383*cdf0e10cSrcweir		};
2384*cdf0e10cSrcweir
2385*cdf0e10cSrcweir		String 3 // description of parameter 1	Dollarfr
2386*cdf0e10cSrcweir		{
2387*cdf0e10cSrcweir			Text [ en-US ] = "The decimal number";
2388*cdf0e10cSrcweir		};
2389*cdf0e10cSrcweir
2390*cdf0e10cSrcweir		String 4 // name of parameter 2			Dollarfr
2391*cdf0e10cSrcweir		{
2392*cdf0e10cSrcweir			Text [ en-US ] = "Fraction";
2393*cdf0e10cSrcweir		};
2394*cdf0e10cSrcweir
2395*cdf0e10cSrcweir		String 5 // description of parameter 2	Dollarfr
2396*cdf0e10cSrcweir		{
2397*cdf0e10cSrcweir			Text [ en-US ] = "The divisor";
2398*cdf0e10cSrcweir		};
2399*cdf0e10cSrcweir	};
2400*cdf0e10cSrcweir
2401*cdf0e10cSrcweir	Resource ANALYSIS_Dollarde
2402*cdf0e10cSrcweir	{
2403*cdf0e10cSrcweir		String 1	// description Dollarde
2404*cdf0e10cSrcweir		{
2405*cdf0e10cSrcweir			Text [ en-US ] = "Converts a price expressed as a fraction into a price expressed as a decimal";
2406*cdf0e10cSrcweir		};
2407*cdf0e10cSrcweir
2408*cdf0e10cSrcweir		String 2 // name of parameter 1			Dollarde
2409*cdf0e10cSrcweir		{
2410*cdf0e10cSrcweir			Text [ en-US ] = "Fractional dollar";
2411*cdf0e10cSrcweir		};
2412*cdf0e10cSrcweir
2413*cdf0e10cSrcweir		String 3 // description of parameter 1	Dollarde
2414*cdf0e10cSrcweir		{
2415*cdf0e10cSrcweir			Text [ en-US ] = "The number as a fraction";
2416*cdf0e10cSrcweir		};
2417*cdf0e10cSrcweir
2418*cdf0e10cSrcweir		String 4 // name of parameter 2			Dollarde
2419*cdf0e10cSrcweir		{
2420*cdf0e10cSrcweir			Text [ en-US ] = "Fraction";
2421*cdf0e10cSrcweir		};
2422*cdf0e10cSrcweir
2423*cdf0e10cSrcweir		String 5 // description of parameter 2	Dollarde
2424*cdf0e10cSrcweir		{
2425*cdf0e10cSrcweir			Text [ en-US ] = "The divisor";
2426*cdf0e10cSrcweir		};
2427*cdf0e10cSrcweir	};
2428*cdf0e10cSrcweir
2429*cdf0e10cSrcweir	Resource ANALYSIS_Yield
2430*cdf0e10cSrcweir	{
2431*cdf0e10cSrcweir		String 1	// description Yield
2432*cdf0e10cSrcweir		{
2433*cdf0e10cSrcweir			Text [ en-US ] = "Returns the yield on a security that pays periodic interest";
2434*cdf0e10cSrcweir		};
2435*cdf0e10cSrcweir
2436*cdf0e10cSrcweir		String 2 // name of parameter 1			Yield
2437*cdf0e10cSrcweir		{
2438*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2439*cdf0e10cSrcweir		};
2440*cdf0e10cSrcweir
2441*cdf0e10cSrcweir		String 3 // description of parameter 1	Yield
2442*cdf0e10cSrcweir		{
2443*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2444*cdf0e10cSrcweir		};
2445*cdf0e10cSrcweir
2446*cdf0e10cSrcweir		String 4 // name of parameter 2			Yield
2447*cdf0e10cSrcweir		{
2448*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2449*cdf0e10cSrcweir		};
2450*cdf0e10cSrcweir
2451*cdf0e10cSrcweir		String 5 // description of parameter 2	Yield
2452*cdf0e10cSrcweir		{
2453*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2454*cdf0e10cSrcweir		};
2455*cdf0e10cSrcweir
2456*cdf0e10cSrcweir		String 6 // name of parameter 3			Yield
2457*cdf0e10cSrcweir		{
2458*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2459*cdf0e10cSrcweir		};
2460*cdf0e10cSrcweir
2461*cdf0e10cSrcweir		String 7 // description of parameter 3	Yield
2462*cdf0e10cSrcweir		{
2463*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2464*cdf0e10cSrcweir		};
2465*cdf0e10cSrcweir
2466*cdf0e10cSrcweir		String 8 // name of parameter 4			Yield
2467*cdf0e10cSrcweir		{
2468*cdf0e10cSrcweir			Text [ en-US ] = "Price";
2469*cdf0e10cSrcweir		};
2470*cdf0e10cSrcweir
2471*cdf0e10cSrcweir		String 9 // description of parameter 4	Yield
2472*cdf0e10cSrcweir		{
2473*cdf0e10cSrcweir			Text [ en-US ] = "The price";
2474*cdf0e10cSrcweir		};
2475*cdf0e10cSrcweir
2476*cdf0e10cSrcweir		String 10 // name of parameter 5		Yield
2477*cdf0e10cSrcweir		{
2478*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2479*cdf0e10cSrcweir		};
2480*cdf0e10cSrcweir
2481*cdf0e10cSrcweir		String 11 // description of parameter 5	Yield
2482*cdf0e10cSrcweir		{
2483*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2484*cdf0e10cSrcweir		};
2485*cdf0e10cSrcweir
2486*cdf0e10cSrcweir		String 12 // name of parameter 6		Yield
2487*cdf0e10cSrcweir		{
2488*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
2489*cdf0e10cSrcweir		};
2490*cdf0e10cSrcweir
2491*cdf0e10cSrcweir		String 13 // description of parameter 6	Yield
2492*cdf0e10cSrcweir		{
2493*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
2494*cdf0e10cSrcweir		};
2495*cdf0e10cSrcweir
2496*cdf0e10cSrcweir		String 14 // name of parameter 7		Yield
2497*cdf0e10cSrcweir		{
2498*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2499*cdf0e10cSrcweir		};
2500*cdf0e10cSrcweir
2501*cdf0e10cSrcweir		String 15 // description of parameter 7	Yield
2502*cdf0e10cSrcweir		{
2503*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2504*cdf0e10cSrcweir		};
2505*cdf0e10cSrcweir	};
2506*cdf0e10cSrcweir
2507*cdf0e10cSrcweir	Resource ANALYSIS_Yielddisc
2508*cdf0e10cSrcweir	{
2509*cdf0e10cSrcweir		String 1	// description Yielddisc
2510*cdf0e10cSrcweir		{
2511*cdf0e10cSrcweir			Text [ en-US ] = "Returns the annual yield for a discounted security";
2512*cdf0e10cSrcweir		};
2513*cdf0e10cSrcweir
2514*cdf0e10cSrcweir		String 2 // name of parameter 1			Yielddisc
2515*cdf0e10cSrcweir		{
2516*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2517*cdf0e10cSrcweir		};
2518*cdf0e10cSrcweir
2519*cdf0e10cSrcweir		String 3 // description of parameter 1	Yielddisc
2520*cdf0e10cSrcweir		{
2521*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2522*cdf0e10cSrcweir		};
2523*cdf0e10cSrcweir
2524*cdf0e10cSrcweir		String 4 // name of parameter 2			Yielddisc
2525*cdf0e10cSrcweir		{
2526*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2527*cdf0e10cSrcweir		};
2528*cdf0e10cSrcweir
2529*cdf0e10cSrcweir		String 5 // description of parameter 2	Yielddisc
2530*cdf0e10cSrcweir		{
2531*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2532*cdf0e10cSrcweir		};
2533*cdf0e10cSrcweir
2534*cdf0e10cSrcweir		String 6 // name of parameter 3			Yielddisc
2535*cdf0e10cSrcweir		{
2536*cdf0e10cSrcweir			Text [ en-US ] = "Price";
2537*cdf0e10cSrcweir		};
2538*cdf0e10cSrcweir
2539*cdf0e10cSrcweir		String 7 // description of parameter 3	Yielddisc
2540*cdf0e10cSrcweir		{
2541*cdf0e10cSrcweir			Text [ en-US ] = "The price";
2542*cdf0e10cSrcweir		};
2543*cdf0e10cSrcweir
2544*cdf0e10cSrcweir		String 8 // name of parameter 4			Yielddisc
2545*cdf0e10cSrcweir		{
2546*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2547*cdf0e10cSrcweir		};
2548*cdf0e10cSrcweir
2549*cdf0e10cSrcweir		String 9 // description of parameter 4	Yielddisc
2550*cdf0e10cSrcweir		{
2551*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2552*cdf0e10cSrcweir		};
2553*cdf0e10cSrcweir
2554*cdf0e10cSrcweir		String 10 // name of parameter 5		Yielddisc
2555*cdf0e10cSrcweir		{
2556*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2557*cdf0e10cSrcweir		};
2558*cdf0e10cSrcweir
2559*cdf0e10cSrcweir		String 11 // description of parameter 5	Yielddisc
2560*cdf0e10cSrcweir		{
2561*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2562*cdf0e10cSrcweir		};
2563*cdf0e10cSrcweir	};
2564*cdf0e10cSrcweir
2565*cdf0e10cSrcweir	Resource ANALYSIS_Yieldmat
2566*cdf0e10cSrcweir	{
2567*cdf0e10cSrcweir		String 1	// description Yieldmat
2568*cdf0e10cSrcweir		{
2569*cdf0e10cSrcweir			Text [ en-US ] = "Returns the annual yield of a security that pays interest at maturity";
2570*cdf0e10cSrcweir		};
2571*cdf0e10cSrcweir
2572*cdf0e10cSrcweir		String 2 // name of parameter 1			Yieldmat
2573*cdf0e10cSrcweir		{
2574*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2575*cdf0e10cSrcweir		};
2576*cdf0e10cSrcweir
2577*cdf0e10cSrcweir		String 3 // description of parameter 1	Yieldmat
2578*cdf0e10cSrcweir		{
2579*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2580*cdf0e10cSrcweir		};
2581*cdf0e10cSrcweir
2582*cdf0e10cSrcweir		String 4 // name of parameter 2			Yieldmat
2583*cdf0e10cSrcweir		{
2584*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2585*cdf0e10cSrcweir		};
2586*cdf0e10cSrcweir
2587*cdf0e10cSrcweir		String 5 // description of parameter 2	Yieldmat
2588*cdf0e10cSrcweir		{
2589*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2590*cdf0e10cSrcweir		};
2591*cdf0e10cSrcweir
2592*cdf0e10cSrcweir		String 6 // name of parameter 3			Yieldmat
2593*cdf0e10cSrcweir		{
2594*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
2595*cdf0e10cSrcweir		};
2596*cdf0e10cSrcweir
2597*cdf0e10cSrcweir		String 7 // description of parameter 3	Yieldmat
2598*cdf0e10cSrcweir		{
2599*cdf0e10cSrcweir			Text [ en-US ] = "The issue date";
2600*cdf0e10cSrcweir		};
2601*cdf0e10cSrcweir
2602*cdf0e10cSrcweir		String 8 // name of parameter 4			Yieldmat
2603*cdf0e10cSrcweir		{
2604*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2605*cdf0e10cSrcweir		};
2606*cdf0e10cSrcweir
2607*cdf0e10cSrcweir		String 9 // description of parameter 4	Yieldmat
2608*cdf0e10cSrcweir		{
2609*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2610*cdf0e10cSrcweir		};
2611*cdf0e10cSrcweir
2612*cdf0e10cSrcweir		String 10 // name of parameter 5		Yieldmat
2613*cdf0e10cSrcweir		{
2614*cdf0e10cSrcweir			Text [ en-US ] = "Price";
2615*cdf0e10cSrcweir		};
2616*cdf0e10cSrcweir
2617*cdf0e10cSrcweir		String 11 // description of parameter 5	Yieldmat
2618*cdf0e10cSrcweir		{
2619*cdf0e10cSrcweir			Text [ en-US ] = "The price";
2620*cdf0e10cSrcweir		};
2621*cdf0e10cSrcweir
2622*cdf0e10cSrcweir		String 12 // name of parameter 6		Yieldmat
2623*cdf0e10cSrcweir		{
2624*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2625*cdf0e10cSrcweir		};
2626*cdf0e10cSrcweir
2627*cdf0e10cSrcweir		String 13 // description of parameter 6	Yieldmat
2628*cdf0e10cSrcweir		{
2629*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2630*cdf0e10cSrcweir		};
2631*cdf0e10cSrcweir	};
2632*cdf0e10cSrcweir
2633*cdf0e10cSrcweir	Resource ANALYSIS_Tbilleq
2634*cdf0e10cSrcweir	{
2635*cdf0e10cSrcweir		String 1	// description Tbilleq
2636*cdf0e10cSrcweir		{
2637*cdf0e10cSrcweir			Text [ en-US ] = "Returns the bond-equivalent yield for a treasury bill";
2638*cdf0e10cSrcweir		};
2639*cdf0e10cSrcweir
2640*cdf0e10cSrcweir		String 2 // name of parameter 1			Tbilleq
2641*cdf0e10cSrcweir		{
2642*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2643*cdf0e10cSrcweir		};
2644*cdf0e10cSrcweir
2645*cdf0e10cSrcweir		String 3 // description of parameter 1	Tbilleq
2646*cdf0e10cSrcweir		{
2647*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2648*cdf0e10cSrcweir		};
2649*cdf0e10cSrcweir
2650*cdf0e10cSrcweir		String 4 // name of parameter 2			Tbilleq
2651*cdf0e10cSrcweir		{
2652*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2653*cdf0e10cSrcweir		};
2654*cdf0e10cSrcweir
2655*cdf0e10cSrcweir		String 5 // description of parameter 2	Tbilleq
2656*cdf0e10cSrcweir		{
2657*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2658*cdf0e10cSrcweir		};
2659*cdf0e10cSrcweir
2660*cdf0e10cSrcweir		String 6 // name of parameter 3			Tbilleq
2661*cdf0e10cSrcweir		{
2662*cdf0e10cSrcweir			Text [ en-US ] = "Discount";
2663*cdf0e10cSrcweir		};
2664*cdf0e10cSrcweir
2665*cdf0e10cSrcweir		String 7 // description of parameter 3	Tbilleq
2666*cdf0e10cSrcweir		{
2667*cdf0e10cSrcweir			Text [ en-US ] = "The discount rate";
2668*cdf0e10cSrcweir		};
2669*cdf0e10cSrcweir	};
2670*cdf0e10cSrcweir
2671*cdf0e10cSrcweir	Resource ANALYSIS_Tbillprice
2672*cdf0e10cSrcweir	{
2673*cdf0e10cSrcweir		String 1	// description Tbillprice
2674*cdf0e10cSrcweir		{
2675*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price of 100 currency units face value for a treasury bill";
2676*cdf0e10cSrcweir		};
2677*cdf0e10cSrcweir
2678*cdf0e10cSrcweir		String 2 // name of parameter 1			Tbillprice
2679*cdf0e10cSrcweir		{
2680*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2681*cdf0e10cSrcweir		};
2682*cdf0e10cSrcweir
2683*cdf0e10cSrcweir		String 3 // description of parameter 1	Tbillprice
2684*cdf0e10cSrcweir		{
2685*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2686*cdf0e10cSrcweir		};
2687*cdf0e10cSrcweir
2688*cdf0e10cSrcweir		String 4 // name of parameter 2			Tbillprice
2689*cdf0e10cSrcweir		{
2690*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2691*cdf0e10cSrcweir		};
2692*cdf0e10cSrcweir
2693*cdf0e10cSrcweir		String 5 // description of parameter 2	Tbillprice
2694*cdf0e10cSrcweir		{
2695*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2696*cdf0e10cSrcweir		};
2697*cdf0e10cSrcweir
2698*cdf0e10cSrcweir		String 6 // name of parameter 3			Tbillprice
2699*cdf0e10cSrcweir		{
2700*cdf0e10cSrcweir			Text [ en-US ] = "Discount";
2701*cdf0e10cSrcweir		};
2702*cdf0e10cSrcweir
2703*cdf0e10cSrcweir		String 7 // description of parameter 3	Tbillprice
2704*cdf0e10cSrcweir		{
2705*cdf0e10cSrcweir			Text [ en-US ] = "The discount rate";
2706*cdf0e10cSrcweir		};
2707*cdf0e10cSrcweir	};
2708*cdf0e10cSrcweir
2709*cdf0e10cSrcweir	Resource ANALYSIS_Tbillyield
2710*cdf0e10cSrcweir	{
2711*cdf0e10cSrcweir		String 1	// description Tbillyield
2712*cdf0e10cSrcweir		{
2713*cdf0e10cSrcweir			Text [ en-US ] = "Returns the yield for a treasury bill";
2714*cdf0e10cSrcweir		};
2715*cdf0e10cSrcweir
2716*cdf0e10cSrcweir		String 2 // name of parameter 1			Tbillyield
2717*cdf0e10cSrcweir		{
2718*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2719*cdf0e10cSrcweir		};
2720*cdf0e10cSrcweir
2721*cdf0e10cSrcweir		String 3 // description of parameter 1	Tbillyield
2722*cdf0e10cSrcweir		{
2723*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2724*cdf0e10cSrcweir		};
2725*cdf0e10cSrcweir
2726*cdf0e10cSrcweir		String 4 // name of parameter 2			Tbillyield
2727*cdf0e10cSrcweir		{
2728*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2729*cdf0e10cSrcweir		};
2730*cdf0e10cSrcweir
2731*cdf0e10cSrcweir		String 5 // description of parameter 2	Tbillyield
2732*cdf0e10cSrcweir		{
2733*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2734*cdf0e10cSrcweir		};
2735*cdf0e10cSrcweir
2736*cdf0e10cSrcweir		String 6 // name of parameter 3			Tbillyield
2737*cdf0e10cSrcweir		{
2738*cdf0e10cSrcweir			Text [ en-US ] = "Price";
2739*cdf0e10cSrcweir		};
2740*cdf0e10cSrcweir
2741*cdf0e10cSrcweir		String 7 // description of parameter 3	Tbillyield
2742*cdf0e10cSrcweir		{
2743*cdf0e10cSrcweir			Text [ en-US ] = "The price";
2744*cdf0e10cSrcweir		};
2745*cdf0e10cSrcweir	};
2746*cdf0e10cSrcweir
2747*cdf0e10cSrcweir	Resource ANALYSIS_Oddfprice
2748*cdf0e10cSrcweir	{
2749*cdf0e10cSrcweir		String 1	// description Oddfprice
2750*cdf0e10cSrcweir		{
2751*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price per $100 face value of a security with an odd first period";
2752*cdf0e10cSrcweir		};
2753*cdf0e10cSrcweir
2754*cdf0e10cSrcweir		String 2 // name of parameter 1			Oddfprice
2755*cdf0e10cSrcweir		{
2756*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2757*cdf0e10cSrcweir		};
2758*cdf0e10cSrcweir
2759*cdf0e10cSrcweir		String 3 // description of parameter 1	Oddfprice
2760*cdf0e10cSrcweir		{
2761*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2762*cdf0e10cSrcweir		};
2763*cdf0e10cSrcweir
2764*cdf0e10cSrcweir		String 4 // name of parameter 2			Oddfprice
2765*cdf0e10cSrcweir		{
2766*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2767*cdf0e10cSrcweir		};
2768*cdf0e10cSrcweir
2769*cdf0e10cSrcweir		String 5 // description of parameter 2	Oddfprice
2770*cdf0e10cSrcweir		{
2771*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2772*cdf0e10cSrcweir		};
2773*cdf0e10cSrcweir
2774*cdf0e10cSrcweir		String 6 // name of parameter 3			Oddfprice
2775*cdf0e10cSrcweir		{
2776*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
2777*cdf0e10cSrcweir		};
2778*cdf0e10cSrcweir
2779*cdf0e10cSrcweir		String 7 // description of parameter 3	Oddfprice
2780*cdf0e10cSrcweir		{
2781*cdf0e10cSrcweir			Text [ en-US ] = "The issue date";
2782*cdf0e10cSrcweir		};
2783*cdf0e10cSrcweir
2784*cdf0e10cSrcweir		String 8 // name of parameter 4			Oddfprice
2785*cdf0e10cSrcweir		{
2786*cdf0e10cSrcweir			Text [ en-US ] = "First coupon";
2787*cdf0e10cSrcweir		};
2788*cdf0e10cSrcweir
2789*cdf0e10cSrcweir		String 9 // description of parameter 4	Oddfprice
2790*cdf0e10cSrcweir		{
2791*cdf0e10cSrcweir			Text [ en-US ] = "The first coupon date";
2792*cdf0e10cSrcweir		};
2793*cdf0e10cSrcweir
2794*cdf0e10cSrcweir		String 10 // name of parameter 5		Oddfprice
2795*cdf0e10cSrcweir		{
2796*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2797*cdf0e10cSrcweir		};
2798*cdf0e10cSrcweir
2799*cdf0e10cSrcweir		String 11 // description of parameter 5	Oddfprice
2800*cdf0e10cSrcweir		{
2801*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2802*cdf0e10cSrcweir		};
2803*cdf0e10cSrcweir
2804*cdf0e10cSrcweir		String 12 // name of parameter 6		Oddfprice
2805*cdf0e10cSrcweir		{
2806*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
2807*cdf0e10cSrcweir		};
2808*cdf0e10cSrcweir
2809*cdf0e10cSrcweir		String 13 // description of parameter 6	Oddfprice
2810*cdf0e10cSrcweir		{
2811*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
2812*cdf0e10cSrcweir		};
2813*cdf0e10cSrcweir
2814*cdf0e10cSrcweir		String 14 // name of parameter 7		Oddfprice
2815*cdf0e10cSrcweir		{
2816*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2817*cdf0e10cSrcweir		};
2818*cdf0e10cSrcweir
2819*cdf0e10cSrcweir		String 15 // description of parameter 7	Oddfprice
2820*cdf0e10cSrcweir		{
2821*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2822*cdf0e10cSrcweir		};
2823*cdf0e10cSrcweir
2824*cdf0e10cSrcweir		String 16 // name of parameter 8		Oddfprice
2825*cdf0e10cSrcweir		{
2826*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
2827*cdf0e10cSrcweir		};
2828*cdf0e10cSrcweir
2829*cdf0e10cSrcweir		String 17 // description of parameter 8	Oddfprice
2830*cdf0e10cSrcweir		{
2831*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
2832*cdf0e10cSrcweir		};
2833*cdf0e10cSrcweir
2834*cdf0e10cSrcweir		String 18 // name of parameter 9		Oddfprice
2835*cdf0e10cSrcweir		{
2836*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2837*cdf0e10cSrcweir		};
2838*cdf0e10cSrcweir
2839*cdf0e10cSrcweir		String 19 // description of parameter 9	Oddfprice
2840*cdf0e10cSrcweir		{
2841*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2842*cdf0e10cSrcweir		};
2843*cdf0e10cSrcweir	};
2844*cdf0e10cSrcweir
2845*cdf0e10cSrcweir	Resource ANALYSIS_Oddfyield
2846*cdf0e10cSrcweir	{
2847*cdf0e10cSrcweir		String 1	// description Oddfyield
2848*cdf0e10cSrcweir		{
2849*cdf0e10cSrcweir			Text [ en-US ] = "Returns the yield of a security with an odd first period";
2850*cdf0e10cSrcweir		};
2851*cdf0e10cSrcweir
2852*cdf0e10cSrcweir		String 2 // name of parameter 1			Oddfyield
2853*cdf0e10cSrcweir		{
2854*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2855*cdf0e10cSrcweir		};
2856*cdf0e10cSrcweir
2857*cdf0e10cSrcweir		String 3 // description of parameter 1	Oddfyield
2858*cdf0e10cSrcweir		{
2859*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2860*cdf0e10cSrcweir		};
2861*cdf0e10cSrcweir
2862*cdf0e10cSrcweir		String 4 // name of parameter 2			Oddfyield
2863*cdf0e10cSrcweir		{
2864*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2865*cdf0e10cSrcweir		};
2866*cdf0e10cSrcweir
2867*cdf0e10cSrcweir		String 5 // description of parameter 2	Oddfyield
2868*cdf0e10cSrcweir		{
2869*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2870*cdf0e10cSrcweir		};
2871*cdf0e10cSrcweir
2872*cdf0e10cSrcweir		String 6 // name of parameter 3			Oddfyield
2873*cdf0e10cSrcweir		{
2874*cdf0e10cSrcweir			Text [ en-US ] = "Issue";
2875*cdf0e10cSrcweir		};
2876*cdf0e10cSrcweir
2877*cdf0e10cSrcweir		String 7 // description of parameter 3	Oddfyield
2878*cdf0e10cSrcweir		{
2879*cdf0e10cSrcweir			Text [ en-US ] = "The issue date";
2880*cdf0e10cSrcweir		};
2881*cdf0e10cSrcweir
2882*cdf0e10cSrcweir		String 8 // name of parameter 4			Oddfyield
2883*cdf0e10cSrcweir		{
2884*cdf0e10cSrcweir			Text [ en-US ] = "First coupon";
2885*cdf0e10cSrcweir		};
2886*cdf0e10cSrcweir
2887*cdf0e10cSrcweir		String 9 // description of parameter 4	Oddfyield
2888*cdf0e10cSrcweir		{
2889*cdf0e10cSrcweir			Text [ en-US ] = "The first coupon date";
2890*cdf0e10cSrcweir		};
2891*cdf0e10cSrcweir
2892*cdf0e10cSrcweir		String 10 // name of parameter 5		Oddfyield
2893*cdf0e10cSrcweir		{
2894*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2895*cdf0e10cSrcweir		};
2896*cdf0e10cSrcweir
2897*cdf0e10cSrcweir		String 11 // description of parameter 5	Oddfyield
2898*cdf0e10cSrcweir		{
2899*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2900*cdf0e10cSrcweir		};
2901*cdf0e10cSrcweir
2902*cdf0e10cSrcweir		String 12 // name of parameter 6		Oddfyield
2903*cdf0e10cSrcweir		{
2904*cdf0e10cSrcweir			Text [ en-US ] = "Price";
2905*cdf0e10cSrcweir		};
2906*cdf0e10cSrcweir
2907*cdf0e10cSrcweir		String 13 // description of parameter 6	Oddfyield
2908*cdf0e10cSrcweir		{
2909*cdf0e10cSrcweir			Text [ en-US ] = "The price";
2910*cdf0e10cSrcweir		};
2911*cdf0e10cSrcweir
2912*cdf0e10cSrcweir		String 14 // name of parameter 7		Oddfyield
2913*cdf0e10cSrcweir		{
2914*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
2915*cdf0e10cSrcweir		};
2916*cdf0e10cSrcweir
2917*cdf0e10cSrcweir		String 15 // description of parameter 7	Oddfyield
2918*cdf0e10cSrcweir		{
2919*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
2920*cdf0e10cSrcweir		};
2921*cdf0e10cSrcweir
2922*cdf0e10cSrcweir		String 16 // name of parameter 8		Oddfyield
2923*cdf0e10cSrcweir		{
2924*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
2925*cdf0e10cSrcweir		};
2926*cdf0e10cSrcweir
2927*cdf0e10cSrcweir		String 17 // description of parameter 8	Oddfyield
2928*cdf0e10cSrcweir		{
2929*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
2930*cdf0e10cSrcweir		};
2931*cdf0e10cSrcweir
2932*cdf0e10cSrcweir		String 18 // name of parameter 9		Oddfyield
2933*cdf0e10cSrcweir		{
2934*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
2935*cdf0e10cSrcweir		};
2936*cdf0e10cSrcweir
2937*cdf0e10cSrcweir		String 19 // description of parameter 9	Oddfyield
2938*cdf0e10cSrcweir		{
2939*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
2940*cdf0e10cSrcweir		};
2941*cdf0e10cSrcweir	};
2942*cdf0e10cSrcweir
2943*cdf0e10cSrcweir	Resource ANALYSIS_Oddlprice
2944*cdf0e10cSrcweir	{
2945*cdf0e10cSrcweir		String 1	// description Oddlprice
2946*cdf0e10cSrcweir		{
2947*cdf0e10cSrcweir			Text [ en-US ] = "Returns the price per $100 face value of a security with an odd last period";
2948*cdf0e10cSrcweir		};
2949*cdf0e10cSrcweir
2950*cdf0e10cSrcweir		String 2 // name of parameter 1			Oddlprice
2951*cdf0e10cSrcweir		{
2952*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
2953*cdf0e10cSrcweir		};
2954*cdf0e10cSrcweir
2955*cdf0e10cSrcweir		String 3 // description of parameter 1	Oddlprice
2956*cdf0e10cSrcweir		{
2957*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
2958*cdf0e10cSrcweir		};
2959*cdf0e10cSrcweir
2960*cdf0e10cSrcweir		String 4 // name of parameter 2			Oddlprice
2961*cdf0e10cSrcweir		{
2962*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
2963*cdf0e10cSrcweir		};
2964*cdf0e10cSrcweir
2965*cdf0e10cSrcweir		String 5 // description of parameter 2	Oddlprice
2966*cdf0e10cSrcweir		{
2967*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
2968*cdf0e10cSrcweir		};
2969*cdf0e10cSrcweir
2970*cdf0e10cSrcweir		String 6 // name of parameter 3			Oddlprice
2971*cdf0e10cSrcweir		{
2972*cdf0e10cSrcweir			Text [ en-US ] = "Last interest";
2973*cdf0e10cSrcweir		};
2974*cdf0e10cSrcweir
2975*cdf0e10cSrcweir		String 7 // description of parameter 3	Oddlprice
2976*cdf0e10cSrcweir		{
2977*cdf0e10cSrcweir			Text [ en-US ] = "The last interest date";
2978*cdf0e10cSrcweir		};
2979*cdf0e10cSrcweir
2980*cdf0e10cSrcweir		String 8 // name of parameter 4			Oddlprice
2981*cdf0e10cSrcweir		{
2982*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
2983*cdf0e10cSrcweir		};
2984*cdf0e10cSrcweir
2985*cdf0e10cSrcweir		String 9 // description of parameter 4	Oddlprice
2986*cdf0e10cSrcweir		{
2987*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
2988*cdf0e10cSrcweir		};
2989*cdf0e10cSrcweir
2990*cdf0e10cSrcweir		String 10 // name of parameter 5		Oddlprice
2991*cdf0e10cSrcweir		{
2992*cdf0e10cSrcweir			Text [ en-US ] = "Yield";
2993*cdf0e10cSrcweir		};
2994*cdf0e10cSrcweir
2995*cdf0e10cSrcweir		String 11 // description of parameter 5	Oddlprice
2996*cdf0e10cSrcweir		{
2997*cdf0e10cSrcweir			Text [ en-US ] = "The yield";
2998*cdf0e10cSrcweir		};
2999*cdf0e10cSrcweir
3000*cdf0e10cSrcweir		String 12 // name of parameter 6		Oddlprice
3001*cdf0e10cSrcweir		{
3002*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
3003*cdf0e10cSrcweir		};
3004*cdf0e10cSrcweir
3005*cdf0e10cSrcweir		String 13 // description of parameter 6	Oddlprice
3006*cdf0e10cSrcweir		{
3007*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
3008*cdf0e10cSrcweir		};
3009*cdf0e10cSrcweir
3010*cdf0e10cSrcweir		String 14 // name of parameter 7		Oddlprice
3011*cdf0e10cSrcweir		{
3012*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3013*cdf0e10cSrcweir		};
3014*cdf0e10cSrcweir
3015*cdf0e10cSrcweir		String 15 // description of parameter 7	Oddlprice
3016*cdf0e10cSrcweir		{
3017*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3018*cdf0e10cSrcweir		};
3019*cdf0e10cSrcweir
3020*cdf0e10cSrcweir		String 16 // name of parameter 8		Oddlprice
3021*cdf0e10cSrcweir		{
3022*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3023*cdf0e10cSrcweir		};
3024*cdf0e10cSrcweir
3025*cdf0e10cSrcweir		String 17 // description of parameter 8	Oddlprice
3026*cdf0e10cSrcweir		{
3027*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3028*cdf0e10cSrcweir		};
3029*cdf0e10cSrcweir	};
3030*cdf0e10cSrcweir
3031*cdf0e10cSrcweir	Resource ANALYSIS_Oddlyield
3032*cdf0e10cSrcweir	{
3033*cdf0e10cSrcweir		String 1	// description Oddlyield
3034*cdf0e10cSrcweir		{
3035*cdf0e10cSrcweir			Text [ en-US ] = "Returns the yield of a security with an odd last period";
3036*cdf0e10cSrcweir		};
3037*cdf0e10cSrcweir
3038*cdf0e10cSrcweir		String 2 // name of parameter 1			Oddlyield
3039*cdf0e10cSrcweir		{
3040*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3041*cdf0e10cSrcweir		};
3042*cdf0e10cSrcweir
3043*cdf0e10cSrcweir		String 3 // description of parameter 1	Oddlyield
3044*cdf0e10cSrcweir		{
3045*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3046*cdf0e10cSrcweir		};
3047*cdf0e10cSrcweir
3048*cdf0e10cSrcweir		String 4 // name of parameter 2			Oddlyield
3049*cdf0e10cSrcweir		{
3050*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3051*cdf0e10cSrcweir		};
3052*cdf0e10cSrcweir
3053*cdf0e10cSrcweir		String 5 // description of parameter 2	Oddlyield
3054*cdf0e10cSrcweir		{
3055*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3056*cdf0e10cSrcweir		};
3057*cdf0e10cSrcweir
3058*cdf0e10cSrcweir		String 6 // name of parameter 3			Oddlyield
3059*cdf0e10cSrcweir		{
3060*cdf0e10cSrcweir			Text [ en-US ] = "Last interest";
3061*cdf0e10cSrcweir		};
3062*cdf0e10cSrcweir
3063*cdf0e10cSrcweir		String 7 // description of parameter 3	Oddlyield
3064*cdf0e10cSrcweir		{
3065*cdf0e10cSrcweir			Text [ en-US ] = "The last interest date";
3066*cdf0e10cSrcweir		};
3067*cdf0e10cSrcweir
3068*cdf0e10cSrcweir		String 8 // name of parameter 4			Oddlyield
3069*cdf0e10cSrcweir		{
3070*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
3071*cdf0e10cSrcweir		};
3072*cdf0e10cSrcweir
3073*cdf0e10cSrcweir		String 9 // description of parameter 4	Oddlyield
3074*cdf0e10cSrcweir		{
3075*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
3076*cdf0e10cSrcweir		};
3077*cdf0e10cSrcweir
3078*cdf0e10cSrcweir		String 10 // name of parameter 5		Oddlyield
3079*cdf0e10cSrcweir		{
3080*cdf0e10cSrcweir			Text [ en-US ] = "Price";
3081*cdf0e10cSrcweir		};
3082*cdf0e10cSrcweir
3083*cdf0e10cSrcweir		String 11 // description of parameter 5	Oddlyield
3084*cdf0e10cSrcweir		{
3085*cdf0e10cSrcweir			Text [ en-US ] = "The price";
3086*cdf0e10cSrcweir		};
3087*cdf0e10cSrcweir
3088*cdf0e10cSrcweir		String 12 // name of parameter 6		Oddlyield
3089*cdf0e10cSrcweir		{
3090*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
3091*cdf0e10cSrcweir		};
3092*cdf0e10cSrcweir
3093*cdf0e10cSrcweir		String 13 // description of parameter 6	Oddlyield
3094*cdf0e10cSrcweir		{
3095*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
3096*cdf0e10cSrcweir		};
3097*cdf0e10cSrcweir
3098*cdf0e10cSrcweir		String 14 // name of parameter 7		Oddlyield
3099*cdf0e10cSrcweir		{
3100*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3101*cdf0e10cSrcweir		};
3102*cdf0e10cSrcweir
3103*cdf0e10cSrcweir		String 15 // description of parameter 7	Oddlyield
3104*cdf0e10cSrcweir		{
3105*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3106*cdf0e10cSrcweir		};
3107*cdf0e10cSrcweir
3108*cdf0e10cSrcweir		String 16 // name of parameter 8		Oddlyield
3109*cdf0e10cSrcweir		{
3110*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3111*cdf0e10cSrcweir		};
3112*cdf0e10cSrcweir
3113*cdf0e10cSrcweir		String 17 // description of parameter 8	Oddlyield
3114*cdf0e10cSrcweir		{
3115*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3116*cdf0e10cSrcweir		};
3117*cdf0e10cSrcweir	};
3118*cdf0e10cSrcweir
3119*cdf0e10cSrcweir	Resource ANALYSIS_Xirr
3120*cdf0e10cSrcweir	{
3121*cdf0e10cSrcweir		String 1	// description Xirr
3122*cdf0e10cSrcweir		{
3123*cdf0e10cSrcweir			Text [ en-US ] = "Returns the internal rate of return for a non-periodic schedule of payments";
3124*cdf0e10cSrcweir		};
3125*cdf0e10cSrcweir
3126*cdf0e10cSrcweir		String 2 // name of parameter 1			Xirr
3127*cdf0e10cSrcweir		{
3128*cdf0e10cSrcweir			Text [ en-US ] = "Values";
3129*cdf0e10cSrcweir		};
3130*cdf0e10cSrcweir
3131*cdf0e10cSrcweir		String 3 // description of parameter 1	Xirr
3132*cdf0e10cSrcweir		{
3133*cdf0e10cSrcweir			Text [ en-US ] = "The values";
3134*cdf0e10cSrcweir		};
3135*cdf0e10cSrcweir
3136*cdf0e10cSrcweir		String 4 // name of parameter 2			Xirr
3137*cdf0e10cSrcweir		{
3138*cdf0e10cSrcweir			Text [ en-US ] = "Dates";
3139*cdf0e10cSrcweir		};
3140*cdf0e10cSrcweir
3141*cdf0e10cSrcweir		String 5 // description of parameter 2	Xirr
3142*cdf0e10cSrcweir		{
3143*cdf0e10cSrcweir			Text [ en-US ] = "The dates";
3144*cdf0e10cSrcweir		};
3145*cdf0e10cSrcweir
3146*cdf0e10cSrcweir		String 6 // name of parameter 3			Xirr
3147*cdf0e10cSrcweir		{
3148*cdf0e10cSrcweir			Text [ en-US ] = "Guess";
3149*cdf0e10cSrcweir		};
3150*cdf0e10cSrcweir
3151*cdf0e10cSrcweir		String 7 // description of parameter 3	Xirr
3152*cdf0e10cSrcweir		{
3153*cdf0e10cSrcweir			Text [ en-US ] = "The guess";
3154*cdf0e10cSrcweir		};
3155*cdf0e10cSrcweir	};
3156*cdf0e10cSrcweir
3157*cdf0e10cSrcweir	Resource ANALYSIS_Xnpv
3158*cdf0e10cSrcweir	{
3159*cdf0e10cSrcweir		String 1	// description Xnpv
3160*cdf0e10cSrcweir		{
3161*cdf0e10cSrcweir			Text [ en-US ] = "Returns the net present value for a non-periodic schedule of payments";
3162*cdf0e10cSrcweir		};
3163*cdf0e10cSrcweir
3164*cdf0e10cSrcweir		String 2 // name of parameter 1			Xnpv
3165*cdf0e10cSrcweir		{
3166*cdf0e10cSrcweir			Text [ en-US ] = "Rate";
3167*cdf0e10cSrcweir		};
3168*cdf0e10cSrcweir
3169*cdf0e10cSrcweir		String 3 // description of parameter 1	Xnpv
3170*cdf0e10cSrcweir		{
3171*cdf0e10cSrcweir			Text [ en-US ] = "The rate";
3172*cdf0e10cSrcweir		};
3173*cdf0e10cSrcweir
3174*cdf0e10cSrcweir		String 4 // name of parameter 2			Xnpv
3175*cdf0e10cSrcweir		{
3176*cdf0e10cSrcweir			Text [ en-US ] = "Values";
3177*cdf0e10cSrcweir		};
3178*cdf0e10cSrcweir
3179*cdf0e10cSrcweir		String 5 // description of parameter 2	Xnpv
3180*cdf0e10cSrcweir		{
3181*cdf0e10cSrcweir			Text [ en-US ] = "The values";
3182*cdf0e10cSrcweir		};
3183*cdf0e10cSrcweir
3184*cdf0e10cSrcweir		String 6 // name of parameter 3			Xnpv
3185*cdf0e10cSrcweir		{
3186*cdf0e10cSrcweir			Text [ en-US ] = "Dates";
3187*cdf0e10cSrcweir		};
3188*cdf0e10cSrcweir
3189*cdf0e10cSrcweir		String 7 // description of parameter 3	Xnpv
3190*cdf0e10cSrcweir		{
3191*cdf0e10cSrcweir			Text [ en-US ] = "The dates";
3192*cdf0e10cSrcweir		};
3193*cdf0e10cSrcweir	};
3194*cdf0e10cSrcweir
3195*cdf0e10cSrcweir	Resource ANALYSIS_Intrate
3196*cdf0e10cSrcweir	{
3197*cdf0e10cSrcweir		String 1	// description Intrate
3198*cdf0e10cSrcweir		{
3199*cdf0e10cSrcweir			Text [ en-US ] = "Returns the interest rate for a fully invested security";
3200*cdf0e10cSrcweir		};
3201*cdf0e10cSrcweir
3202*cdf0e10cSrcweir		String 2 // name of parameter 1			Intrate
3203*cdf0e10cSrcweir		{
3204*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3205*cdf0e10cSrcweir		};
3206*cdf0e10cSrcweir
3207*cdf0e10cSrcweir		String 3 // description of parameter 1	Intrate
3208*cdf0e10cSrcweir		{
3209*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3210*cdf0e10cSrcweir		};
3211*cdf0e10cSrcweir
3212*cdf0e10cSrcweir		String 4 // name of parameter 2			Intrate
3213*cdf0e10cSrcweir		{
3214*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3215*cdf0e10cSrcweir		};
3216*cdf0e10cSrcweir
3217*cdf0e10cSrcweir		String 5 // description of parameter 2	Intrate
3218*cdf0e10cSrcweir		{
3219*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3220*cdf0e10cSrcweir		};
3221*cdf0e10cSrcweir
3222*cdf0e10cSrcweir		String 6 // name of parameter 3			Intrate
3223*cdf0e10cSrcweir		{
3224*cdf0e10cSrcweir			Text [ en-US ] = "Investment";
3225*cdf0e10cSrcweir		};
3226*cdf0e10cSrcweir
3227*cdf0e10cSrcweir		String 7 // description of parameter 3	Intrate
3228*cdf0e10cSrcweir		{
3229*cdf0e10cSrcweir			Text [ en-US ] = "The investment";
3230*cdf0e10cSrcweir		};
3231*cdf0e10cSrcweir
3232*cdf0e10cSrcweir		String 8 // name of parameter 4			Intrate
3233*cdf0e10cSrcweir		{
3234*cdf0e10cSrcweir			Text [ en-US ] = "Redemption";
3235*cdf0e10cSrcweir		};
3236*cdf0e10cSrcweir
3237*cdf0e10cSrcweir		String 9 // description of parameter 4	Intrate
3238*cdf0e10cSrcweir		{
3239*cdf0e10cSrcweir			Text [ en-US ] = "The redemption value";
3240*cdf0e10cSrcweir		};
3241*cdf0e10cSrcweir
3242*cdf0e10cSrcweir		String 10 // name of parameter 5		Intrate
3243*cdf0e10cSrcweir		{
3244*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3245*cdf0e10cSrcweir		};
3246*cdf0e10cSrcweir
3247*cdf0e10cSrcweir		String 11 // description of parameter 5	Intrate
3248*cdf0e10cSrcweir		{
3249*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3250*cdf0e10cSrcweir		};
3251*cdf0e10cSrcweir	};
3252*cdf0e10cSrcweir
3253*cdf0e10cSrcweir	Resource ANALYSIS_Coupncd
3254*cdf0e10cSrcweir	{
3255*cdf0e10cSrcweir		String 1	// description Coupncd
3256*cdf0e10cSrcweir		{
3257*cdf0e10cSrcweir			Text [ en-US ] = "Returns the first coupon date after the settlement date";
3258*cdf0e10cSrcweir		};
3259*cdf0e10cSrcweir
3260*cdf0e10cSrcweir		String 2 // name of parameter 1			Coupncd
3261*cdf0e10cSrcweir		{
3262*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3263*cdf0e10cSrcweir		};
3264*cdf0e10cSrcweir
3265*cdf0e10cSrcweir		String 3 // description of parameter 1	Coupncd
3266*cdf0e10cSrcweir		{
3267*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3268*cdf0e10cSrcweir		};
3269*cdf0e10cSrcweir
3270*cdf0e10cSrcweir		String 4 // name of parameter 2			Coupncd
3271*cdf0e10cSrcweir		{
3272*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3273*cdf0e10cSrcweir		};
3274*cdf0e10cSrcweir
3275*cdf0e10cSrcweir		String 5 // description of parameter 2	Coupncd
3276*cdf0e10cSrcweir		{
3277*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3278*cdf0e10cSrcweir		};
3279*cdf0e10cSrcweir
3280*cdf0e10cSrcweir		String 6 // name of parameter 3			Coupncd
3281*cdf0e10cSrcweir		{
3282*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3283*cdf0e10cSrcweir		};
3284*cdf0e10cSrcweir
3285*cdf0e10cSrcweir		String 7 // description of parameter 3	Coupncd
3286*cdf0e10cSrcweir		{
3287*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3288*cdf0e10cSrcweir		};
3289*cdf0e10cSrcweir
3290*cdf0e10cSrcweir		String 8 // name of parameter 4			Coupncd
3291*cdf0e10cSrcweir		{
3292*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3293*cdf0e10cSrcweir		};
3294*cdf0e10cSrcweir
3295*cdf0e10cSrcweir		String 9 // description of parameter 4	Coupncd
3296*cdf0e10cSrcweir		{
3297*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3298*cdf0e10cSrcweir		};
3299*cdf0e10cSrcweir	};
3300*cdf0e10cSrcweir
3301*cdf0e10cSrcweir	Resource ANALYSIS_Coupdays
3302*cdf0e10cSrcweir	{
3303*cdf0e10cSrcweir		String 1	// description Coupdays
3304*cdf0e10cSrcweir		{
3305*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of days in the coupon period containing the settlement date";
3306*cdf0e10cSrcweir		};
3307*cdf0e10cSrcweir
3308*cdf0e10cSrcweir		String 2 // name of parameter 1			Coupdays
3309*cdf0e10cSrcweir		{
3310*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3311*cdf0e10cSrcweir		};
3312*cdf0e10cSrcweir
3313*cdf0e10cSrcweir		String 3 // description of parameter 1	Coupdays
3314*cdf0e10cSrcweir		{
3315*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3316*cdf0e10cSrcweir		};
3317*cdf0e10cSrcweir
3318*cdf0e10cSrcweir		String 4 // name of parameter 2			Coupdays
3319*cdf0e10cSrcweir		{
3320*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3321*cdf0e10cSrcweir		};
3322*cdf0e10cSrcweir
3323*cdf0e10cSrcweir		String 5 // description of parameter 2	Coupdays
3324*cdf0e10cSrcweir		{
3325*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3326*cdf0e10cSrcweir		};
3327*cdf0e10cSrcweir
3328*cdf0e10cSrcweir		String 6 // name of parameter 3			Coupdays
3329*cdf0e10cSrcweir		{
3330*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3331*cdf0e10cSrcweir		};
3332*cdf0e10cSrcweir
3333*cdf0e10cSrcweir		String 7 // description of parameter 3	Coupdays
3334*cdf0e10cSrcweir		{
3335*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3336*cdf0e10cSrcweir		};
3337*cdf0e10cSrcweir
3338*cdf0e10cSrcweir		String 8 // name of parameter 4			Coupdays
3339*cdf0e10cSrcweir		{
3340*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3341*cdf0e10cSrcweir		};
3342*cdf0e10cSrcweir
3343*cdf0e10cSrcweir		String 9 // description of parameter 4	Coupdays
3344*cdf0e10cSrcweir		{
3345*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3346*cdf0e10cSrcweir		};
3347*cdf0e10cSrcweir	};
3348*cdf0e10cSrcweir
3349*cdf0e10cSrcweir	Resource ANALYSIS_Coupdaysnc
3350*cdf0e10cSrcweir	{
3351*cdf0e10cSrcweir		String 1	// description Coupdaysnc
3352*cdf0e10cSrcweir		{
3353*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of days from the settlement date to the next coupon date";
3354*cdf0e10cSrcweir		};
3355*cdf0e10cSrcweir
3356*cdf0e10cSrcweir		String 2 // name of parameter 1			Coupdaysnc
3357*cdf0e10cSrcweir		{
3358*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3359*cdf0e10cSrcweir		};
3360*cdf0e10cSrcweir
3361*cdf0e10cSrcweir		String 3 // description of parameter 1	Coupdaysnc
3362*cdf0e10cSrcweir		{
3363*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3364*cdf0e10cSrcweir		};
3365*cdf0e10cSrcweir
3366*cdf0e10cSrcweir		String 4 // name of parameter 2			Coupdaysnc
3367*cdf0e10cSrcweir		{
3368*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3369*cdf0e10cSrcweir		};
3370*cdf0e10cSrcweir
3371*cdf0e10cSrcweir		String 5 // description of parameter 2	Coupdaysnc
3372*cdf0e10cSrcweir		{
3373*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3374*cdf0e10cSrcweir		};
3375*cdf0e10cSrcweir
3376*cdf0e10cSrcweir		String 6 // name of parameter 3			Coupdaysnc
3377*cdf0e10cSrcweir		{
3378*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3379*cdf0e10cSrcweir		};
3380*cdf0e10cSrcweir
3381*cdf0e10cSrcweir		String 7 // description of parameter 3	Coupdaysnc
3382*cdf0e10cSrcweir		{
3383*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3384*cdf0e10cSrcweir		};
3385*cdf0e10cSrcweir
3386*cdf0e10cSrcweir		String 8 // name of parameter 4			Coupdaysnc
3387*cdf0e10cSrcweir		{
3388*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3389*cdf0e10cSrcweir		};
3390*cdf0e10cSrcweir
3391*cdf0e10cSrcweir		String 9 // description of parameter 4	Coupdaysnc
3392*cdf0e10cSrcweir		{
3393*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3394*cdf0e10cSrcweir		};
3395*cdf0e10cSrcweir	};
3396*cdf0e10cSrcweir
3397*cdf0e10cSrcweir	Resource ANALYSIS_Coupdaybs
3398*cdf0e10cSrcweir	{
3399*cdf0e10cSrcweir		String 1	// description Coupdaybs
3400*cdf0e10cSrcweir		{
3401*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of days from the beginning of the coupon period to the settlement date";
3402*cdf0e10cSrcweir		};
3403*cdf0e10cSrcweir
3404*cdf0e10cSrcweir		String 2 // name of parameter 1			Coupdaybs
3405*cdf0e10cSrcweir		{
3406*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3407*cdf0e10cSrcweir		};
3408*cdf0e10cSrcweir
3409*cdf0e10cSrcweir		String 3 // description of parameter 1	Coupdaybs
3410*cdf0e10cSrcweir		{
3411*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3412*cdf0e10cSrcweir		};
3413*cdf0e10cSrcweir
3414*cdf0e10cSrcweir		String 4 // name of parameter 2			Coupdaybs
3415*cdf0e10cSrcweir		{
3416*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3417*cdf0e10cSrcweir		};
3418*cdf0e10cSrcweir
3419*cdf0e10cSrcweir		String 5 // description of parameter 2	Coupdaybs
3420*cdf0e10cSrcweir		{
3421*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3422*cdf0e10cSrcweir		};
3423*cdf0e10cSrcweir
3424*cdf0e10cSrcweir		String 6 // name of parameter 3			Coupdaybs
3425*cdf0e10cSrcweir		{
3426*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3427*cdf0e10cSrcweir		};
3428*cdf0e10cSrcweir
3429*cdf0e10cSrcweir		String 7 // description of parameter 3	Coupdaybs
3430*cdf0e10cSrcweir		{
3431*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3432*cdf0e10cSrcweir		};
3433*cdf0e10cSrcweir
3434*cdf0e10cSrcweir		String 8 // name of parameter 4			Coupdaybs
3435*cdf0e10cSrcweir		{
3436*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3437*cdf0e10cSrcweir		};
3438*cdf0e10cSrcweir
3439*cdf0e10cSrcweir		String 9 // description of parameter 4	Coupdaybs
3440*cdf0e10cSrcweir		{
3441*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3442*cdf0e10cSrcweir		};
3443*cdf0e10cSrcweir	};
3444*cdf0e10cSrcweir
3445*cdf0e10cSrcweir	Resource ANALYSIS_Couppcd
3446*cdf0e10cSrcweir	{
3447*cdf0e10cSrcweir		String 1	// description Couppcd
3448*cdf0e10cSrcweir		{
3449*cdf0e10cSrcweir			Text [ en-US ] = "Returns the last coupon date preceding the settlement date";
3450*cdf0e10cSrcweir		};
3451*cdf0e10cSrcweir
3452*cdf0e10cSrcweir		String 2 // name of parameter 1			Couppcd
3453*cdf0e10cSrcweir		{
3454*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3455*cdf0e10cSrcweir		};
3456*cdf0e10cSrcweir
3457*cdf0e10cSrcweir		String 3 // description of parameter 1	Couppcd
3458*cdf0e10cSrcweir		{
3459*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3460*cdf0e10cSrcweir		};
3461*cdf0e10cSrcweir
3462*cdf0e10cSrcweir		String 4 // name of parameter 2			Couppcd
3463*cdf0e10cSrcweir		{
3464*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3465*cdf0e10cSrcweir		};
3466*cdf0e10cSrcweir
3467*cdf0e10cSrcweir		String 5 // description of parameter 2	Couppcd
3468*cdf0e10cSrcweir		{
3469*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3470*cdf0e10cSrcweir		};
3471*cdf0e10cSrcweir
3472*cdf0e10cSrcweir		String 6 // name of parameter 3			Couppcd
3473*cdf0e10cSrcweir		{
3474*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3475*cdf0e10cSrcweir		};
3476*cdf0e10cSrcweir
3477*cdf0e10cSrcweir		String 7 // description of parameter 3	Couppcd
3478*cdf0e10cSrcweir		{
3479*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3480*cdf0e10cSrcweir		};
3481*cdf0e10cSrcweir
3482*cdf0e10cSrcweir		String 8 // name of parameter 4			Couppcd
3483*cdf0e10cSrcweir		{
3484*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3485*cdf0e10cSrcweir		};
3486*cdf0e10cSrcweir
3487*cdf0e10cSrcweir		String 9 // description of parameter 4	Couppcd
3488*cdf0e10cSrcweir		{
3489*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3490*cdf0e10cSrcweir		};
3491*cdf0e10cSrcweir	};
3492*cdf0e10cSrcweir
3493*cdf0e10cSrcweir	Resource ANALYSIS_Coupnum
3494*cdf0e10cSrcweir	{
3495*cdf0e10cSrcweir		String 1	// description Coupnum
3496*cdf0e10cSrcweir		{
3497*cdf0e10cSrcweir			Text [ en-US ] = "Returns the number of coupons payable between the settlement and maturity dates";
3498*cdf0e10cSrcweir		};
3499*cdf0e10cSrcweir
3500*cdf0e10cSrcweir		String 2 // name of parameter 1			Coupnum
3501*cdf0e10cSrcweir		{
3502*cdf0e10cSrcweir			Text [ en-US ] = "Settlement";
3503*cdf0e10cSrcweir		};
3504*cdf0e10cSrcweir
3505*cdf0e10cSrcweir		String 3 // description of parameter 1	Coupnum
3506*cdf0e10cSrcweir		{
3507*cdf0e10cSrcweir			Text [ en-US ] = "The settlement";
3508*cdf0e10cSrcweir		};
3509*cdf0e10cSrcweir
3510*cdf0e10cSrcweir		String 4 // name of parameter 2			Coupnum
3511*cdf0e10cSrcweir		{
3512*cdf0e10cSrcweir			Text [ en-US ] = "Maturity";
3513*cdf0e10cSrcweir		};
3514*cdf0e10cSrcweir
3515*cdf0e10cSrcweir		String 5 // description of parameter 2	Coupnum
3516*cdf0e10cSrcweir		{
3517*cdf0e10cSrcweir			Text [ en-US ] = "The maturity";
3518*cdf0e10cSrcweir		};
3519*cdf0e10cSrcweir
3520*cdf0e10cSrcweir		String 6 // name of parameter 3			Coupnum
3521*cdf0e10cSrcweir		{
3522*cdf0e10cSrcweir			Text [ en-US ] = "Frequency";
3523*cdf0e10cSrcweir		};
3524*cdf0e10cSrcweir
3525*cdf0e10cSrcweir		String 7 // description of parameter 3	Coupnum
3526*cdf0e10cSrcweir		{
3527*cdf0e10cSrcweir			Text [ en-US ] = "The frequency";
3528*cdf0e10cSrcweir		};
3529*cdf0e10cSrcweir
3530*cdf0e10cSrcweir		String 8 // name of parameter 4			Coupnum
3531*cdf0e10cSrcweir		{
3532*cdf0e10cSrcweir			Text [ en-US ] = "Basis";
3533*cdf0e10cSrcweir		};
3534*cdf0e10cSrcweir
3535*cdf0e10cSrcweir		String 9 // description of parameter 4	Coupnum
3536*cdf0e10cSrcweir		{
3537*cdf0e10cSrcweir			Text [ en-US ] = "The basis";
3538*cdf0e10cSrcweir		};
3539*cdf0e10cSrcweir	};
3540*cdf0e10cSrcweir
3541*cdf0e10cSrcweir	Resource ANALYSIS_Fvschedule
3542*cdf0e10cSrcweir	{
3543*cdf0e10cSrcweir		String 1	// description Fvschedule
3544*cdf0e10cSrcweir		{
3545*cdf0e10cSrcweir			Text [ en-US ] = "Returns the future value of the initial principal after a series of compound interest rates are applied";
3546*cdf0e10cSrcweir		};
3547*cdf0e10cSrcweir
3548*cdf0e10cSrcweir		String 2 // name of parameter 1			Fvschedule
3549*cdf0e10cSrcweir		{
3550*cdf0e10cSrcweir			Text [ en-US ] = "Principal";
3551*cdf0e10cSrcweir		};
3552*cdf0e10cSrcweir
3553*cdf0e10cSrcweir		String 3 // description of parameter 1	Fvschedule
3554*cdf0e10cSrcweir		{
3555*cdf0e10cSrcweir			Text [ en-US ] = "The principal";
3556*cdf0e10cSrcweir		};
3557*cdf0e10cSrcweir
3558*cdf0e10cSrcweir		String 4 // name of parameter 2			Fvschedule
3559*cdf0e10cSrcweir		{
3560*cdf0e10cSrcweir			Text [ en-US ] = "Schedule";
3561*cdf0e10cSrcweir		};
3562*cdf0e10cSrcweir
3563*cdf0e10cSrcweir		String 5 // description of parameter 2	Fvschedule
3564*cdf0e10cSrcweir		{
3565*cdf0e10cSrcweir			Text [ en-US ] = "The schedule";
3566*cdf0e10cSrcweir		};
3567*cdf0e10cSrcweir	};
3568*cdf0e10cSrcweir};
3569*cdf0e10cSrcweir
3570*cdf0e10cSrcweir
3571*cdf0e10cSrcweir
3572*cdf0e10cSrcweir
3573*cdf0e10cSrcweir
3574*cdf0e10cSrcweir
3575*cdf0e10cSrcweir
3576*cdf0e10cSrcweir
3577*cdf0e10cSrcweir
3578*cdf0e10cSrcweir
3579*cdf0e10cSrcweir
3580*cdf0e10cSrcweir
3581*cdf0e10cSrcweir
3582*cdf0e10cSrcweir
3583*cdf0e10cSrcweir
3584*cdf0e10cSrcweir
3585*cdf0e10cSrcweir
3586*cdf0e10cSrcweir
3587*cdf0e10cSrcweir
3588*cdf0e10cSrcweir
3589*cdf0e10cSrcweir
3590*cdf0e10cSrcweir
3591*cdf0e10cSrcweir
3592*cdf0e10cSrcweir
3593*cdf0e10cSrcweir
3594*cdf0e10cSrcweir
3595*cdf0e10cSrcweir
3596*cdf0e10cSrcweir
3597*cdf0e10cSrcweir
3598*cdf0e10cSrcweir
3599*cdf0e10cSrcweir
3600*cdf0e10cSrcweir
3601*cdf0e10cSrcweir
3602*cdf0e10cSrcweir
3603*cdf0e10cSrcweir
3604*cdf0e10cSrcweir
3605