Warning, /office/calligra/sheets/functions/math.xml is written in an unsupported language. File is not indexed.

0001 <!DOCTYPE KSpreadFunctions>
0002 <KSpreadFunctions>
0003 
0004 <Group>
0005     <GroupName>Math</GroupName>
0006     
0007     <Function>
0008         <Name>SUBTOTAL</Name>
0009         <Type>Float</Type>
0010         <Parameter>
0011             <Comment>Function</Comment>
0012             <Type>Int</Type>
0013         </Parameter>
0014         <Parameter>
0015             <Comment>Values</Comment>
0016             <Type range="true">FLOAT</Type>
0017         </Parameter>
0018         <Help>
0019             <Text>The SUBTOTAL() function returns a subtotal of a given list of arguments ignoring other subtotal results in there. Function can be one of the following numbers: 1 - Average, 2 - Count, 3 - CountA, 4 - Max, 5 - Min, 6 - Product, 7 - StDev, 8 - StDevP, 9 - Sum, 10 - Var, 11 - VarP.</Text>
0020             <Syntax>SUBTOTAL(function; value)</Syntax>
0021             <Example>If A1:A5 contains 7, 24, 23, 56 and 9:</Example>
0022             <Example>SUBTOTAL(1; A1:A5) returns 23.8</Example>
0023             <Example>SUBTOTAL(4; A1:A5) returns 56</Example>
0024             <Example>SUBTOTAL(9; A1:A5) returns 119</Example>
0025             <Example>SUBTOTAL(11; A1:A5) returns 307.76</Example>
0026             <Related>AVERAGE</Related>
0027             <Related>COUNT</Related>
0028             <Related>COUNTA</Related>
0029             <Related>MAX</Related>
0030             <Related>MIN</Related>
0031             <Related>PRODUCT</Related>
0032             <Related>STDEV</Related>
0033             <Related>STDEVP</Related>
0034             <Related>SUM</Related>
0035             <Related>VAR</Related>
0036             <Related>VARP</Related>
0037         </Help>
0038     </Function>
0039 
0040     <Function>
0041         <Name>SERIESSUM</Name>
0042         <Type>Float</Type>
0043         <Parameter>
0044             <Comment>X the independent variable of the power series</Comment>
0045             <Type>Float</Type>
0046         </Parameter>
0047         <Parameter>
0048             <Comment>N the initial power to which X is to be raised</Comment>
0049             <Type>Float</Type>
0050         </Parameter>
0051         <Parameter>
0052             <Comment>M the increment by which to increase N for each term in the series</Comment>
0053             <Type>Float</Type>
0054         </Parameter>
0055         <Parameter>
0056             <Comment>Coefficients a set of coefficients by which each successive power of the variable X is multiplied</Comment>
0057             <Type range="true">FLOAT</Type>
0058         </Parameter>
0059         <Help>
0060             <Text>The SERIESSUM() function returns the sum of a power series.</Text>
0061             <Syntax>SERIESSUM( X; N; M; Coefficients)</Syntax>
0062             <Example>SERIESSUM(2;0;2;{1;2}) return 9</Example>
0063         </Help>
0064     </Function>
0065 
0066 
0067     <Function>
0068         <Name>LCM</Name>
0069         <Type>Float</Type>
0070         <Parameter>
0071             <Comment>First number</Comment>
0072             <Type range="true">FLOAT</Type>
0073         </Parameter>
0074         <Parameter>
0075             <Comment>Second number</Comment>
0076             <Type range="true">FLOAT</Type>
0077         </Parameter>
0078         <Help>
0079             <Text>The LCM() function returns the least common multiple for two or more float values</Text>
0080             <Syntax>LCM(value; value)</Syntax>
0081             <Example>LCM(6;4) returns 12</Example>
0082             <Example>LCM(1.5;2.25) returns 4.5</Example>
0083             <Example>LCM(2;3;4) returns 12</Example>
0084             <Related>GCD</Related>
0085         </Help>
0086     </Function>
0087 
0088     <Function>
0089         <Name>GCD</Name>
0090         <Type>Int</Type>
0091         <Parameter>
0092             <Comment>First number</Comment>
0093             <Type range="true">Int</Type>
0094         </Parameter>
0095         <Parameter>
0096             <Comment>Second number</Comment>
0097             <Type range="true">Int</Type>
0098         </Parameter>
0099         <Parameter>
0100             <Comment>Third number</Comment>
0101             <Type range="true">Int</Type>
0102         </Parameter>
0103         <Help>
0104             <Text>The GCD() function returns the greatest common denominator for two or more integer values.</Text>
0105             <Syntax>GCD(value; value)</Syntax>
0106             <Example>GCD(6;4) returns 2</Example>
0107             <Example>GCD(10;20) returns 10</Example>
0108             <Example>GCD(20;15;10) returns 5</Example>
0109             <Related>LCM</Related>
0110         </Help>
0111     </Function>
0112 
0113     <Function>
0114         <Name>EPS</Name>
0115         <Type>Float</Type>
0116         <Help>
0117             <Text>EPS() returns the machine epsilon; this is the difference between 1 and the next largest floating-point number. Because computers use a finite number of digits, roundoff error is inherent (but usually insignificant) in all calculations.</Text>
0118             <Syntax>EPS()</Syntax>
0119             <Example>On most systems, this returns 2^-52=2.2204460492503131e-16</Example>
0120             <Example>0.5*EPS() returns the "unit round"; this value is interesting because it is the largest number x where (1+x)-1=0 (due to roundoff errors).</Example>
0121             <Example>EPS() is so small that Calligra Sheets displays 1+eps() as 1</Example>
0122             <Example>Pick a number x between 0 and EPS(). Observe that 1+x rounds x to either 0 or EPS() by using the equation (1+x)-1</Example>
0123         </Help>
0124     </Function>
0125 
0126     <Function>
0127         <Name>POWER</Name>
0128         <Type>Float</Type>
0129         <Parameter>
0130             <Comment>Floating point value</Comment>
0131             <Type>Float</Type>
0132         </Parameter>
0133         <Parameter>
0134             <Comment>Floating point value</Comment>
0135             <Type>Float</Type>
0136         </Parameter>
0137         <Help>
0138             <Text>The POWER(x;y) function returns the value of x raised to the power of y.</Text>
0139             <Syntax>POWER(value;value)</Syntax>
0140             <Example>POWER(1.2;3.4) equals 1.8572</Example>
0141             <Example>POWER(2;3) equals 8</Example>
0142             <Related>POW</Related>
0143         </Help>
0144     </Function>
0145 
0146     <Function>
0147         <Name>POW</Name>
0148         <Type>Float</Type>
0149         <Parameter>
0150             <Comment>Floating point value</Comment>
0151             <Type>Float</Type>
0152         </Parameter>
0153         <Parameter>
0154             <Comment>Floating point value</Comment>
0155             <Type>Float</Type>
0156         </Parameter>
0157         <Help>
0158             <Text>The POW(x;y) function returns the value of x raised to the power of y. It's the same as POWER.</Text>
0159             <Syntax>POW(value;value)</Syntax>
0160             <Example>POW(1.2;3.4) equals 1.8572</Example>
0161             <Example>POW(2;3) equals 8</Example>
0162             <Related>POWER</Related>
0163         </Help>
0164     </Function>
0165 
0166     <Function>
0167         <Name>EVEN</Name>
0168         <Type>Float</Type>
0169         <Parameter>
0170             <Comment>Floating point value</Comment>
0171             <Type>Float</Type>
0172         </Parameter>
0173         <Help>
0174             <Text>The EVEN() function returns the number rounded up to the nearest even integer.</Text>
0175             <Syntax>EVEN(value)</Syntax>
0176             <Example>EVEN(1.2) returns 2</Example>
0177             <Example>EVEN(2) returns 2</Example>
0178             <Related>ODD</Related>
0179         </Help>
0180     </Function>
0181 
0182     <Function>
0183         <Name>TRUNC</Name>
0184         <Type>Float</Type>
0185         <Parameter>
0186             <Comment>Floating point value</Comment>
0187             <Type>Float</Type>
0188         </Parameter>
0189         <Parameter>
0190             <Comment>Precision</Comment>
0191             <Type>Int</Type>
0192         </Parameter>
0193         <Help>
0194             <Text>The TRUNC() function truncates a numeric value to a certain precision. If the precision is omitted 0 is assumed.</Text>
0195             <Syntax>TRUNC(value; precision)</Syntax>
0196             <Example>TRUNC(1.2) returns 1</Example>
0197             <Example>TRUNC(213.232; 2) returns 213.23</Example>
0198             <Related>ROUND</Related>
0199             <Related>ROUNDDOWN</Related>
0200             <Related>ROUNDUP</Related>
0201         </Help>
0202     </Function>
0203 
0204     <Function>
0205         <Name>ODD</Name>
0206         <Type>Float</Type>
0207         <Parameter>
0208             <Comment>Floating point value</Comment>
0209             <Type>Float</Type>
0210         </Parameter>
0211         <Help>
0212             <Text>The ODD() function returns the number rounded up (or down, for negative values) to the nearest odd integer. By definition, ODD(0) is 1.</Text>
0213             <Syntax>ODD(value)</Syntax>
0214             <Example>ODD(1.2) returns 3</Example>
0215             <Example>ODD(2) returns 3</Example>
0216             <Example>ODD(-2) returns -3</Example>
0217             <Related>EVEN</Related>
0218         </Help>
0219     </Function>
0220 
0221     <Function>
0222         <Name>GAMMA</Name>
0223         <Type>Float</Type>
0224         <Parameter>
0225             <Comment>Floating point value</Comment>
0226             <Type>Float</Type>
0227         </Parameter>
0228         <Help>
0229             <Text>The GAMMA() function returns the gamma function value.</Text>
0230             <Syntax>GAMMA(value)</Syntax>
0231             <Example>GAMMA(1) returns 1</Example>
0232             <Related>FACT</Related>
0233         </Help>
0234     </Function>
0235 
0236     <Function>
0237         <Name>MOD</Name>
0238         <Type>Int</Type>
0239         <Parameter>
0240             <Comment>Floating point value</Comment>
0241             <Type>Int</Type>
0242         </Parameter>
0243         <Parameter>
0244             <Comment>Floating point value</Comment>
0245             <Type>Int</Type>
0246         </Parameter>
0247         <Help>
0248             <Text>The MOD() function returns the remainder after division. If the second parameter is null the function returns #DIV/0.</Text>
0249             <Syntax>MOD(value;value)</Syntax>
0250             <Example>MOD(12;5) returns 2</Example>
0251             <Example>MOD(5;5) returns 0</Example>
0252             <Related>DIV</Related>
0253         </Help>
0254     </Function>
0255 
0256     <Function>
0257         <Name>SIGN</Name>
0258         <Type>Int</Type>
0259         <Parameter>
0260             <Comment>Floating point value</Comment>
0261             <Type>Float</Type>
0262         </Parameter>
0263         <Help>
0264             <Text>This function returns -1 if the number is negative, 0 if the number is null and 1 if the number is positive.</Text>
0265             <Syntax>SIGN(value)</Syntax>
0266             <Example>SIGN(5) equals 1</Example>
0267             <Example>SIGN(0) equals 0</Example>
0268             <Example>SIGN(-5) equals -1</Example>
0269         </Help>
0270     </Function>
0271 
0272     <Function>
0273         <Name>INV</Name>
0274         <Type>Float</Type>
0275         <Parameter>
0276             <Comment>Floating point value</Comment>
0277             <Type>Float</Type>
0278         </Parameter>
0279         <Help>
0280             <Text>This function multiplies each value by -1.</Text>
0281             <Syntax>INV(value)</Syntax>
0282             <Example>INV(-5) equals 5</Example>
0283             <Example>INV(5) equals -5</Example>
0284             <Example>INV(0) equals 0</Example>
0285         </Help>
0286     </Function>
0287 
0288     <Function>
0289         <Name>COUNT</Name>
0290         <Type>Float</Type>
0291         <Parameter>
0292             <Comment>Values</Comment>
0293             <Type range="true">FLOAT</Type>
0294         </Parameter>
0295         <Help>
0296             <Text>This function returns the count of integer or floating arguments passed. You can count using a range: COUNT(A1:B5) or using a list of values like COUNT(12;5;12.5).</Text>
0297             <Syntax>COUNT(value;value;value...)</Syntax>
0298             <Example>COUNT(-5;"KSpread";2) returns 2</Example>
0299             <Example>COUNT(5) returns 1</Example>
0300             <Related>COUNTA</Related>
0301             <Related>COUNTIF</Related>
0302             <Related>SUM</Related>
0303         </Help>
0304     </Function>
0305 
0306     <Function>
0307         <Name>COUNTA</Name>
0308         <Type>Float</Type>
0309         <Parameter>
0310             <Comment>Values</Comment>
0311             <Type range="true">FLOAT</Type>
0312         </Parameter>
0313         <Help>
0314             <Text>This function returns the count of all non empty arguments passed. You can count using a range: COUNTA(A1:B5) or using a list of values like COUNTA(12;5;12.5).</Text>
0315             <Syntax>COUNTA(value;value;value...)</Syntax>
0316             <Example>COUNTA(-5;"KSpread";2) returns 3</Example>
0317             <Example>COUNTA(5) returns 1</Example>
0318             <Related>COUNT</Related>
0319             <Related>COUNTIF</Related>
0320         </Help>
0321     </Function>
0322 
0323     <Function>
0324         <Name>COUNTBLANK</Name>
0325         <Type>Float</Type>
0326         <Parameter optional="true">
0327             <Comment>Cell range</Comment>
0328             <Type range="true">Range</Type>
0329         </Parameter>
0330         <Help>
0331             <Text>This function returns the count of all empty cells within the range.</Text>
0332             <Syntax>COUNTBLANK(range)</Syntax>
0333             <Example>COUNTBLANK(A1:B5)</Example>
0334             <Related>COUNT</Related>
0335             <Related>COUNTA</Related>
0336             <Related>COUNTIF</Related>
0337         </Help>
0338     </Function>
0339 
0340     <Function>
0341         <Name>COUNTIF</Name>
0342         <Type>Int</Type>
0343         <Parameter>
0344             <Comment>Range</Comment>
0345             <Type range="true">Float</Type>
0346         </Parameter>
0347         <Parameter>
0348             <Comment>Criteria</Comment>
0349             <Type>String</Type>
0350         </Parameter>
0351         <Help>
0352             <Text>The COUNTIF() function returns the number of cells in the given range that meet the given criteria.</Text>
0353             <Syntax>COUNTIF(range;criteria)</Syntax>
0354             <Example>COUNTIF(A2:A3;"14") returns 1 if A2 is -4 and A3 is 14</Example>
0355             <Related>COUNT</Related>
0356             <Related>SUMIF</Related>
0357         </Help>
0358     </Function>
0359 
0360     <Function>
0361         <Name>FACT</Name>
0362         <Type>Float</Type>
0363         <Parameter>
0364             <Comment>A floating point value</Comment>
0365             <Type>Float</Type>
0366         </Parameter>
0367         <Help>
0368             <Text>The FACT() function calculates the factorial of the parameter. The mathematical expression is (value)!.</Text>
0369             <Syntax>FACT(number)</Syntax>
0370             <Example>FACT(10) returns 3628800</Example>
0371             <Example>FACT(0) returns 1</Example>
0372         </Help>
0373     </Function>
0374 
0375     <Function>
0376         <Name>FACTDOUBLE</Name>
0377         <Type>Float</Type>
0378         <Parameter>
0379             <Comment>A floating point value</Comment>
0380             <Type>Float</Type>
0381         </Parameter>
0382         <Help>
0383             <Text>The FACTDOUBLE() function calculates the double factorial of a number, i.e. x!!.</Text>
0384             <Syntax>FACTDOUBLE(number)</Syntax>
0385             <Example>FACTDOUBLE(6) returns 48</Example>
0386             <Example>FACTDOUBLE(7) returns 105</Example>
0387         </Help>
0388     </Function>
0389 
0390     <Function>
0391         <Name>SUM</Name>
0392         <Type>Float</Type>
0393         <Parameter>
0394             <Comment>Values</Comment>
0395             <Type range="true">FLOAT</Type>
0396         </Parameter>
0397         <Help>
0398             <Text>The SUM() function calculates the sum of all the values given as parameters. You can calculate the sum of a range SUM(A1:B5) or a list of values like SUM(12;5;12.5).</Text>
0399             <Syntax>SUM(value;value;...)</Syntax>
0400             <Example>SUM(12;5;7) equals 24</Example>
0401             <Example>SUM(12.5;2) equals 14.5</Example>
0402             <Related>SUMA</Related>
0403             <Related>SUMSQ</Related>
0404             <Related>SUMIF</Related>
0405         </Help>
0406     </Function>
0407 
0408     <Function>
0409         <Name>SUMA</Name>
0410         <Type>Float</Type>
0411         <Parameter>
0412             <Comment>Values</Comment>
0413             <Type range="true">FLOAT</Type>
0414         </Parameter>
0415         <Help>
0416             <Text>The SUMA() function calculates the sum of all the values given as parameters. You can calculate the sum of a range SUMA(A1:B5) or a list of values like SUMA(12;5;12.5). If a parameter contains text or the boolean value FALSE it is counted as 0, if a parameter evaluates to TRUE it is counted as 1.</Text>
0417             <Syntax>SUM(value;value;...)</Syntax>
0418             <Example>SUMA(12;5; 7) equals 24</Example>
0419             <Example>SUMA(12.5; 2; TRUE) equals 15.5</Example>
0420             <Related>SUM</Related>
0421             <Related>SUMSQ</Related>
0422         </Help>
0423     </Function>
0424 
0425     <Function>
0426         <Name>SUMIF</Name>
0427         <Type>Float</Type>
0428         <Parameter>
0429             <Comment>Check range</Comment>
0430             <Type range="true">Float</Type>
0431         </Parameter>
0432         <Parameter>
0433             <Comment>Criteria</Comment>
0434             <Type>String</Type>
0435         </Parameter>
0436         <Parameter optional="true">
0437             <Comment>Sum range</Comment>
0438             <Type range="true">Float</Type>
0439         </Parameter>
0440         <Help>
0441             <Text>The SUMIF() function calculates the sum of all values given as parameters which match the criteria. The sum range is optional. If not supplied, the values in the check range are summed. The length of the check range should be equal or less than the length of the sum range.</Text>
0442             <Syntax>SUMIF(checkrange;criteria;sumrange)</Syntax>
0443             <Example>SUMIF(A1:A4;">1") sums all values in range A1:A4 which match >1</Example>
0444             <Example>SUMIF(A1:A4;"=0";B1:B4) sums all values in range B1:B4 if the corresponding value in A1:A4 matches =0</Example>
0445             <Related>SUM</Related>
0446             <Related>COUNTIF</Related>
0447         </Help>
0448     </Function>
0449 
0450     <Function>
0451         <Name>PRODUCT</Name>
0452         <Type>Float</Type>
0453         <Parameter>
0454             <Comment>Values</Comment>
0455             <Type range="true">FLOAT</Type>
0456         </Parameter>
0457         <Help>
0458             <Text>The PRODUCT() function calculates the product of all the values given as parameters. You can calculate the product of a range: PRODUCT(A1:B5) or a list of values like product(12;5;12.5). If no numeric values are found 0 is returned.</Text>
0459             <Syntax>PRODUCT(value;value;...)</Syntax>
0460             <Example>PRODUCT(3;5;7) equals 105</Example>
0461             <Example>PRODUCT(12.5;2) equals 25</Example>
0462             <Related>MULTIPLY</Related>
0463             <Related>KPRODUCT</Related>
0464         </Help>
0465     </Function>
0466 
0467     <Function>
0468         <Name>KPRODUCT</Name>
0469         <Type>Float</Type>
0470         <Parameter>
0471             <Comment>Values</Comment>
0472             <Type range="true">FLOAT</Type>
0473         </Parameter>
0474         <Help>
0475             <Text>The KPRODUCT() function calculates the product of all the values given as parameters. You can calculate the product of a range: KPRODUCT(A1:B5) or a list of values like KPRODUCT(12;5;12.5). If no numeric values are found 1 is returned.</Text>
0476             <Syntax>KPRODUCT(value;value;...)</Syntax>
0477             <Example>KPRODUCT(3;5;7) equals 105</Example>
0478             <Example>KPRODUCT(12.5;2) equals 25</Example>
0479             <Related>G_PRODUCT</Related>
0480             <Related>MULTIPLY</Related>
0481             <Related>PRODUCT</Related>
0482         </Help>
0483     </Function>
0484 
0485     <Function>
0486         <Name>G_PRODUCT</Name>
0487         <Type>Float</Type>
0488         <Parameter>
0489             <Comment>Values</Comment>
0490             <Type range="true">FLOAT</Type>
0491         </Parameter>
0492         <Help>
0493             <Text>The G_PRODUCT() function is the same as KPRODUCT. It is provided for Gnumeric compatibility.</Text>
0494             <Syntax>G_PRODUCT(value;value;...)</Syntax>
0495             <Related>KPRODUCT</Related>
0496         </Help>
0497     </Function>
0498 
0499     <Function>
0500         <Name>DIV</Name>
0501         <Type>Float</Type>
0502         <Parameter>
0503             <Comment>Values</Comment>
0504             <Type range="true">FLOAT</Type>
0505         </Parameter>
0506         <Help>
0507             <Text>The DIV() function divides the first value by the other values in turn.</Text>
0508             <Syntax>DIV(value;value;...)</Syntax>
0509             <Example>DIV(20;2;2) returns 5</Example>
0510             <Example>DIV(25;2.5) returns 10</Example>
0511             <Related>MULTIPLY</Related>
0512             <Related>MOD</Related>
0513         </Help>
0514     </Function>
0515 
0516     <Function>
0517         <Name>SUMSQ</Name>
0518         <Type>Float</Type>
0519         <Parameter>
0520             <Comment>Values</Comment>
0521             <Type range="true">FLOAT</Type>
0522         </Parameter>
0523         <Help>
0524             <Text>The SUMSQ() function calculates the sum of all the squares of values given as parameters. You can calculate the sum of a range SUMSQ(A1:B5) or a list of values like SUMSQ(12;5;12.5).</Text>
0525             <Syntax>SUMSQ(value;value;...)</Syntax>
0526             <Example>SUMSQ(12;5;7) equals 218</Example>
0527             <Example>SUMSQ(12.5;2) equals 173</Example>
0528             <Related>SUM</Related>
0529         </Help>
0530     </Function>
0531 
0532 
0533     <Function>
0534         <Name>MAX</Name>
0535         <Type>Float</Type>
0536         <Parameter>
0537             <Comment>Values</Comment>
0538             <Type range="true">FLOAT</Type>
0539         </Parameter>
0540         <Help>
0541             <Text>The MAX() function returns the largest value given in the parameters. String and logical values are ignored.</Text>
0542             <Syntax>MAX(value;value;...)</Syntax>
0543             <Example>MAX(12;5; 7) returns 12</Example>
0544             <Example>MAX(12.5; 2) returns 12.5</Example>
0545             <Example>MAX(0.5; 0.4; TRUE; 0.2) returns 0.5</Example>
0546             <Related>COUNT</Related>
0547             <Related>COUNTA</Related>
0548             <Related>MAXA</Related>
0549             <Related>MIN</Related>
0550             <Related>MINA</Related>
0551         </Help>
0552     </Function>
0553 
0554     <Function>
0555         <Name>MAXA</Name>
0556         <Type>Float</Type>
0557         <Parameter>
0558             <Comment>Values</Comment>
0559             <Type range="true">FLOAT</Type>
0560         </Parameter>
0561         <Help>
0562             <Text>The MAXA() function returns the largest value given in the parameters. TRUE evaluates to 1, FALSE evaluates to 0. String values are ignored.</Text>
0563             <Syntax>MAXA(value;value;...)</Syntax>
0564             <Example>MAXA(12;5; 7) returns 12</Example>
0565             <Example>MAXA(12.5; 2) returns 12.5</Example>
0566             <Example>MAXA(0.5; 0.4; TRUE; 0.2) returns 1</Example>
0567             <Related>COUNT</Related>
0568             <Related>COUNTA</Related>
0569             <Related>MAX</Related>
0570             <Related>MIN</Related>
0571             <Related>MINA</Related>
0572         </Help>
0573     </Function>
0574 
0575     <Function>
0576         <Name>MIN</Name>
0577         <Type>Float</Type>
0578         <Parameter>
0579             <Comment>Values</Comment>
0580             <Type range="true">FLOAT</Type>
0581         </Parameter>
0582         <Help>
0583             <Text>The MIN() function returns the smallest value given in the parameters. String and logical values are ignored.</Text>
0584             <Syntax>MIN(value;value;...)</Syntax>
0585             <Example>MIN(12;5; 7) returns 5</Example>
0586             <Example>MIN(12.5; 2) returns 2</Example>
0587             <Example>MIN(0.4; 2; FALSE; 0.7) returns 0.4</Example>
0588             <Related>COUNT</Related>
0589             <Related>COUNTA</Related>
0590             <Related>MAX</Related>
0591             <Related>MAXA</Related>
0592             <Related>MINA</Related>
0593         </Help>
0594     </Function>
0595 
0596     <Function>
0597         <Name>MINA</Name>
0598         <Type>Float</Type>
0599         <Parameter>
0600             <Comment>Values</Comment>
0601             <Type range="true">FLOAT</Type>
0602         </Parameter>
0603         <Help>
0604             <Text>The MINA() function returns the smallest value given in the parameters. TRUE evaluates to 1, FALSE to 0. String values are ignored.</Text>
0605             <Syntax>MINA(value;value;...)</Syntax>
0606             <Example>MINA(12;5; 7) returns 5</Example>
0607             <Example>MINA(12.5; 2) returns 2</Example>
0608             <Example>MINA(0.4; 2; FALSE; 0.7) returns 0.</Example>
0609             <Related>COUNT</Related>
0610             <Related>COUNTA</Related>
0611             <Related>MAX</Related>
0612             <Related>MAXA</Related>
0613             <Related>MIN</Related>
0614         </Help>
0615     </Function>
0616 
0617     <Function>
0618         <Name>MULTIPLY</Name>
0619         <Type>Float</Type>
0620         <Parameter>
0621             <Comment>Values</Comment>
0622             <Type range="true">FLOAT</Type>
0623         </Parameter>
0624         <Help>
0625             <Text>The MULTIPLY() function multiplies all the values given in the parameters. You can multiply values given by a range MULTIPLY(A1:B5) or a list of values like MULTIPLY(12;5;12.5). It's equivalent to PRODUCT.</Text>
0626             <Syntax>MULTIPLY(value;value;...)</Syntax>
0627             <Example>MULTIPLY(12;5;7) equals 420</Example>
0628             <Example>MULTIPLY(12.5;2) equals 25</Example>
0629             <Related>DIV</Related>
0630             <Related>PRODUCT</Related>
0631             <Related>KPRODUCT</Related>
0632         </Help>
0633     </Function>
0634 
0635     <Function>
0636         <Name>MULTINOMIAL</Name>
0637         <Type>Float</Type>
0638         <Parameter>
0639             <Comment>Values</Comment>
0640             <Type range="true">FLOAT</Type>
0641         </Parameter>
0642         <Help>
0643             <Text>The MULTINOMIAL() function returns the multinomial of each number in the parameters. It uses this formula for MULTINOMIAL(a,b,c):</Text>
0644             <Text>(a+b+c)! / a!b!c!</Text>
0645             <Syntax>MULTINOMIAL(value;value;...)</Syntax>
0646             <Example>MULTINOMIAL(3;4;5) equals 27720</Example>
0647         </Help>
0648     </Function>
0649 
0650     <Function>
0651         <Name>SQRT</Name>
0652         <Type>Float</Type>
0653         <Parameter>
0654             <Comment>A floating point value</Comment>
0655             <Type>Float</Type>
0656         </Parameter>
0657         <Help>
0658             <Text>The SQRT() function returns the non-negative square root of the argument. It is an error if the argument is negative.</Text>
0659             <Syntax>SQRT(x)</Syntax>
0660             <Example>SQRT(9) equals 3</Example>
0661             <Example>SQRT(-9) is an error</Example>
0662             <Related>IMSQRT</Related>
0663         </Help>
0664     </Function>
0665 
0666     <Function>
0667         <Name>SQRTPI</Name>
0668         <Type>Float</Type>
0669         <Parameter>
0670             <Comment>A floating point value</Comment>
0671             <Type>Float</Type>
0672         </Parameter>
0673         <Help>
0674             <Text>The SQRTPI() function returns the non-negative square root of x * PI. It is an error if the argument is negative.</Text>
0675             <Syntax>SQRTPI(x)</Syntax>
0676             <Example>SQRTPI(2) equals 2.506628</Example>
0677         </Help>
0678     </Function>
0679 
0680     <Function>
0681         <Name>LN</Name>
0682         <Type>Float</Type>
0683         <Parameter>
0684             <Comment>A floating point value</Comment>
0685             <Type>Float</Type>
0686         </Parameter>
0687         <Help>
0688             <Text>The LN() function returns the natural logarithm of x.</Text>
0689             <Syntax>LN(x)</Syntax>
0690             <Example>LN(0.8) equals -0.22314355</Example>
0691             <Example>LN(0) equals -inf</Example>
0692             <Related>LOG</Related>
0693             <Related>LOG10</Related>
0694             <Related>LOG2</Related>
0695         </Help>
0696     </Function>
0697 
0698     <Function>
0699         <Name>LOGN</Name>
0700         <Type>Float</Type>
0701         <Parameter>
0702             <Comment>A floating point value</Comment>
0703             <Type>Float</Type>
0704         </Parameter>
0705         <Parameter>
0706             <Comment>Base</Comment>
0707             <Type>Float</Type>
0708         </Parameter>
0709         <Help>
0710             <Text>The LOGn() function returns the base n logarithm of x.</Text>
0711             <Syntax>LOGn(value;base)</Syntax>
0712             <Example>LOGn(12;10) equals 1.07918125</Example>
0713             <Example>LOGn(12;2) equals 3.5849625</Example>
0714             <Related>LOG</Related>
0715             <Related>LN</Related>
0716             <Related>LOG10</Related>
0717             <Related>LOG2</Related>
0718         </Help>
0719     </Function>
0720 
0721     <Function>
0722         <Name>ROOTN</Name>
0723         <Type>Float</Type>
0724         <Parameter>
0725             <Comment>A floating point value</Comment>
0726             <Type>Float</Type>
0727         </Parameter>
0728         <Parameter>
0729             <Comment>Value</Comment>
0730             <Type>Int</Type>
0731         </Parameter>
0732         <Help>
0733             <Text>The ROOTN() function returns the non-negative nth root of x.</Text>
0734             <Syntax>ROOTN(x;n)</Syntax>
0735             <Example>ROOTN(9;2) equals 3</Example>
0736             <Related>SQRT</Related>
0737         </Help>
0738     </Function>
0739 
0740     <Function>
0741         <Name>CUR</Name>
0742         <Type>Float</Type>
0743         <Parameter>
0744             <Comment>A floating point value</Comment>
0745             <Type>Float</Type>
0746         </Parameter>
0747         <Help>
0748             <Text>The CUR() function returns the non-negative cube root of x.</Text>
0749             <Syntax>CUR(x)</Syntax>
0750             <Example>CUR(27) equals 3</Example>
0751             <Related>SQRT</Related>
0752         </Help>
0753     </Function>
0754 
0755     <Function>
0756         <Name>LOG</Name>
0757         <Type>Float</Type>
0758         <Parameter>
0759             <Comment>A floating point value, greater than zero</Comment>
0760             <Type>Float</Type>
0761         </Parameter>
0762         <Help>
0763             <Text>The LOG() function returns the base-10 logarithm of x.</Text>
0764             <Syntax>LOG(x)</Syntax>
0765             <Example>LOG(0.8) equals -0.09691001</Example>
0766             <Example>LOG(0) is an error.</Example>
0767             <Related>LN</Related>
0768             <Related>LOGN</Related>
0769             <Related>LOG10</Related>
0770             <Related>LOG2</Related>
0771         </Help>
0772     </Function>
0773 
0774     <Function>
0775         <Name>LOG10</Name>
0776         <Type>Float</Type>
0777         <Parameter>
0778             <Comment>A positive floating point value</Comment>
0779             <Type>Float</Type>
0780         </Parameter>
0781         <Help>
0782             <Text>The LOG10() function returns the base-10 logarithm of the argument.</Text>
0783             <Syntax>LOG10(x)</Syntax>
0784             <Example>LOG10(10) equals 1.</Example>
0785             <Example>LOG10(0) is an error.</Example>
0786             <Related>LN</Related>
0787             <Related>LOGN</Related>
0788             <Related>LOG</Related>
0789             <Related>LOG2</Related>
0790         </Help>
0791     </Function>
0792 
0793     <Function>
0794         <Name>LOG2</Name>
0795         <Type>Float</Type>
0796         <Parameter>
0797             <Comment>A floating point value</Comment>
0798             <Type>Float</Type>
0799         </Parameter>
0800         <Help>
0801             <Text>The LOG2() function returns the base-2 logarithm of x.</Text>
0802             <Syntax>LOG2(x)</Syntax>
0803             <Example>LOG2(0.8) equals -0.32192809</Example>
0804             <Example>LOG2(0) equals -inf.</Example>
0805             <Related>LN</Related>
0806             <Related>LOGN</Related>
0807             <Related>LOG</Related>
0808             <Related>LOG10</Related>
0809         </Help>
0810     </Function>
0811 
0812     <Function>
0813         <Name>EXP</Name>
0814         <Type>Float</Type>
0815         <Parameter>
0816             <Comment>A floating point value</Comment>
0817             <Type>Float</Type>
0818         </Parameter>
0819         <Help>
0820             <Text>The EXP() function returns the value of e (the base of natural logarithms) raised to the power of x.</Text>
0821             <Syntax>EXP(x)</Syntax>
0822             <Example>EXP(9) equals 8 103.08392758</Example>
0823             <Example>EXP(-9) equals 0.00012341</Example>
0824             <Related>LN</Related>
0825         </Help>
0826     </Function>
0827 
0828     <Function>
0829         <Name>CEIL</Name>
0830         <Type>Integer</Type>
0831         <Parameter>
0832             <Comment>A floating point value</Comment>
0833             <Type>Float</Type>
0834         </Parameter>
0835         <Help>
0836             <Text>The CEIL() function rounds x up to the nearest integer which is greater than the input, returning that value as a double.</Text>
0837             <Syntax>CEIL(x)</Syntax>
0838             <Example>CEIL(12.5) equals 13</Example>
0839             <Example>CEIL(-12.5) equals -12</Example>
0840             <Related>CEILING</Related>
0841             <Related>FLOOR</Related>
0842             <Related>ROUND</Related>
0843             <Related>ROUNDUP</Related>
0844         </Help>
0845     </Function>
0846 
0847     <Function>
0848         <Name>CEILING</Name>
0849         <Type>Integer</Type>
0850         <Parameter>
0851             <Comment>A floating point value</Comment>
0852             <Type>Float</Type>
0853         </Parameter>
0854         <Parameter>
0855             <Comment>Significance (optional)</Comment>
0856             <Type>Float</Type>
0857         </Parameter>
0858         <Parameter>
0859             <Comment>Mode (optional)</Comment>
0860             <Type>Float</Type>
0861         </Parameter>
0862         <Help>
0863             <Text>The CEILING() function rounds x up (away from zero) to the nearest multiple of Significance which is greater than the input. The default value for Significance is 1 (or -1 if the value is negative), which means rounding up to the nearest integer. If the Mode parameter is non-zero, the function rounds away from zero, instead of up towards the positive infinity.</Text>
0864             <Syntax>CEILING(x)</Syntax>
0865             <Example>CEILING(12.5) equals 13</Example>
0866             <Example>CEILING(6.43; 4) equals 8</Example>
0867             <Example>CEILING(-6.43; -4; 1) equals -8</Example>
0868             <Example>CEILING(-6.43; -4; 0) equals -4</Example>
0869             <Related>CEIL</Related>
0870             <Related>FLOOR</Related>
0871             <Related>ROUND</Related>
0872             <Related>ROUNDUP</Related>
0873         </Help>
0874     </Function>
0875 
0876     <Function>
0877         <Name>FLOOR</Name>
0878         <Type>Integer</Type>
0879         <Parameter>
0880             <Comment>A floating point value</Comment>
0881             <Type>Float</Type>
0882         </Parameter>
0883         <Parameter optional="true">
0884             <Comment>Significance (optional)</Comment>
0885             <Type>Float</Type>
0886         </Parameter>
0887         <Parameter optional="true">
0888             <Comment>Mode (optional)</Comment>
0889             <Type>Float</Type>
0890         </Parameter>
0891         <Help>
0892             <Text>Round a number x down to the nearest multiple of the second parameter, Significance.</Text>
0893             <!--FIXME remove wordwrap, leads to strange looking translation messages-->
0894             <Text>The FLOOR() function rounds x down (towards zero) to the nearest multiple of Significance which is smaller than the input.
0895                 The default value for Significance is 1, if x is positive. It is -1, if the value is negative,
0896                 which means rounding up to the nearest integer.
0897                 If mode is given and not equal to zero, the amount of x is rounded toward zero to a multiple
0898                 of significance and then the sign applied. Otherwise, it rounds toward negative infinity.
0899                     If any of the two parameters x or Significance is zero, the result is zero.</Text>
0900                     <Syntax>FLOOR(x)</Syntax>
0901                     <Example>FLOOR(12.5) equals 12</Example>
0902                     <Example>FLOOR(-12.5) equals -13</Example>
0903                     <Example>FLOOR(5; 2) equals 4</Example>
0904                     <Example>FLOOR(5; 2.2) equals 4.4</Example>
0905                     <Related>CEIL</Related>
0906                     <Related>CEILING</Related>
0907                     <Related>ROUND</Related>
0908                     <Related>ROUNDDOWN</Related>
0909                 </Help>
0910             </Function>
0911 
0912             <Function>
0913                 <Name>ABS</Name>
0914                 <Type>Float</Type>
0915                 <Parameter>
0916                     <Comment>A floating point value</Comment>
0917                     <Type>Float</Type>
0918                 </Parameter>
0919                 <Help>
0920                     <Text>The ABS() function returns the absolute value of the floating-point number x.</Text>
0921                     <Syntax>ABS(x)</Syntax>
0922                     <Example>ABS(12.5) equals 12.5</Example>
0923                     <Example>ABS(-12.5) equals 12.5</Example>
0924                 </Help>
0925             </Function>
0926 
0927             <Function>
0928                 <Name>INT</Name>
0929                 <Type>Int</Type>
0930                 <Parameter>
0931                     <Comment>A floating point value</Comment>
0932                     <Type>Float</Type>
0933                 </Parameter>
0934                 <Help>
0935                     <Text>The INT() function returns the integer part of the value.</Text>
0936                     <Syntax>INT(x)</Syntax>
0937                     <Example>INT(12.55) equals 12</Example>
0938                     <Example>INT(15) equals 15</Example>
0939                     <Related>FLOOR</Related>
0940                     <Related>QUOTIENT</Related>
0941                 </Help>
0942             </Function>
0943 
0944             <Function>
0945                 <Name>RAND</Name>
0946                 <Type>Float</Type>
0947                 <Help>
0948                     <Text>The RAND() function returns a pseudo-random number between 0 and 1.</Text>
0949                     <Syntax>RAND()</Syntax>
0950                     <Example>RAND() equals for example 0.78309922...</Example>
0951                     <Related>RANDBETWEEN</Related>
0952                     <Related>RANDEXP</Related>
0953                 </Help>
0954             </Function>
0955 
0956             <Function>
0957                 <Name>RANDEXP</Name>
0958                 <Type>Float</Type>
0959                 <Parameter>
0960                     <Comment>A floating point value (greater 0)</Comment>
0961                     <Type>Float</Type>
0962                 </Parameter>
0963                 <Help>
0964                     <Text>The RANDEXP() function returns an exponentially-distributed pseudo-random number.</Text>
0965                     <Syntax>RANDEXP(x)</Syntax>
0966                     <Example>RANDEXP(0.88)</Example>
0967                     <Related>RAND</Related>
0968                 </Help>
0969             </Function>
0970 
0971             <Function>
0972                 <Name>RANDPOISSON</Name>
0973                 <Type>Float</Type>
0974                 <Parameter>
0975                     <Comment>A floating point value (greater 0)</Comment>
0976                     <Type>Float</Type>
0977                 </Parameter>
0978                 <Parameter>
0979                     <Comment>A floating point value</Comment>
0980                     <Type>Float</Type>
0981                 </Parameter>
0982                 <Help>
0983                     <Text>The RANDPOISSON() function returns a poisson-distributed pseudo-random number.</Text>
0984                     <Syntax>RANDPOISSON(x)</Syntax>
0985                     <Example>RANDPOISSON(4)</Example>
0986                     <Related>RAND</Related>
0987                 </Help>
0988             </Function>
0989 
0990             <Function>
0991                 <Name>RANDBINOM</Name>
0992                 <Type>Float</Type>
0993                 <Parameter>
0994                     <Comment>A floating point value (between 0 and 1)</Comment>
0995                     <Type>Float</Type>
0996                 </Parameter>
0997                 <Parameter>
0998                     <Comment>Trials (greater 0)</Comment>
0999                     <Type>Int</Type>
1000                 </Parameter>
1001                 <Help>
1002                     <Text>The RANDBINOM() function returns a binomially-distributed pseudo-random number.</Text>
1003                     <Syntax>RANDBINOM(x)</Syntax>
1004                     <Example>RANDBINOM(4)</Example>
1005                     <Related>RAND</Related>
1006                     <Related>RANDNEGBINOM</Related>
1007                 </Help>
1008             </Function>
1009 
1010             <Function>
1011                 <Name>RANDNEGBINOM</Name>
1012                 <Type>Float</Type>
1013                 <Parameter>
1014                     <Comment>A floating point value (between 0 and 1)</Comment>
1015                     <Type>Float</Type>
1016                 </Parameter>
1017                 <Parameter>
1018                     <Comment>Failures (greater 0)</Comment>
1019                     <Type>Int</Type>
1020                 </Parameter>
1021                 <Help>
1022                     <Text>The RANDNEGBINOM() function returns a negative binomially-distributed pseudo-random number.</Text>
1023                     <Syntax>RANDNEGBINOM(x)</Syntax>
1024                     <Example>RANDNEGBINOM(4)</Example>
1025                     <Related>RAND</Related>
1026                     <Related>RANDBINOM</Related>
1027                 </Help>
1028             </Function>
1029 
1030             <Function>
1031                 <Name>RANDBERNOULLI</Name>
1032                 <Type>Float</Type>
1033                 <Parameter>
1034                     <Comment>A floating point value (between 0 and 1)</Comment>
1035                     <Type>Float</Type>
1036                 </Parameter>
1037                 <Parameter>
1038                     <Comment>A floating point value</Comment>
1039                     <Type>Float</Type>
1040                 </Parameter>
1041                 <Help>
1042                     <Text>The RANDBERNOULLI() function returns a Bernoulli-distributed pseudo-random number.</Text>
1043                     <Syntax>RANDBERNOULLI(x)</Syntax>
1044                     <Example>RANDBERNOULLI(0.45)</Example>
1045                     <Related>RAND</Related>
1046                 </Help>
1047             </Function>
1048 
1049             <Function>
1050                 <Name>RANDNORM</Name>
1051                 <Type>Float</Type>
1052                 <Parameter>
1053                     <Comment>Mean value of the normal distribution</Comment>
1054                     <Type>Float</Type>
1055                 </Parameter>
1056                 <Parameter>
1057                     <Comment>Dispersion of the normal distribution</Comment>
1058                     <Type>Float</Type>
1059                 </Parameter>
1060                 <Help>
1061                     <Text>The RANDNORM() function returns a Normal(Gaussian)-distributed pseudo-random number.</Text>
1062                     <Syntax>RANDNORM(mu; sigma)</Syntax>
1063                     <Example>RANDNORM(0; 1)</Example>
1064                     <Related>RAND</Related>
1065                 </Help>
1066             </Function>
1067 
1068             <Function>
1069                 <Name>RANDBETWEEN</Name>
1070                 <Type>Float</Type>
1071                 <Parameter>
1072                     <Comment>Bottom value</Comment>
1073                     <Type>Int</Type>
1074                 </Parameter>
1075                 <Parameter>
1076                     <Comment>Top value</Comment>
1077                     <Type>Int</Type>
1078                 </Parameter>
1079                 <Help>
1080                     <Text>The RANDBETWEEN() function returns a pseudo-random number between bottom and top value. If bottom > top this function returns Err.</Text>
1081                     <Syntax>RANDBETWEEN(bottom;top)</Syntax>
1082                     <Example>RANDBETWEEN(12;78) equals for example 61.0811...</Example>
1083                     <Related>RAND</Related>
1084                 </Help>
1085             </Function>
1086             <Function>
1087                 <Name>MROUND</Name>
1088                 <Type>Float</Type>
1089                 <Parameter>
1090                     <Comment>Floating point value</Comment>
1091                     <Type>Float</Type>
1092                 </Parameter>
1093                 <Parameter>
1094                     <Comment>Multiple</Comment>
1095                     <Type>Float</Type>
1096                 </Parameter>
1097                 <Help>
1098                     <Text>The MROUND() function returns the value rounded to the specified multiple. The value and the multiple must have the same sign</Text>
1099                     <Syntax>MROUND(value; multiple)</Syntax>
1100                     <Example>MROUND(1.252; 0.5) equals 1.5</Example>
1101                     <Example>MROUND(-1.252; -0.5) equals -1.5</Example>
1102                     <Related>ROUND</Related>
1103                 </Help>
1104             </Function>
1105 
1106             <Function>
1107                 <Name>ROUND</Name>
1108                 <Type>Float</Type>
1109                 <Parameter>
1110                     <Comment>Floating point value</Comment>
1111                     <Type>Float</Type>
1112                 </Parameter>
1113                 <Parameter>
1114                     <Comment>Digits</Comment>
1115                     <Type>Int</Type>
1116                 </Parameter>
1117                 <Help>
1118                     <Text>The ROUND(value;[digits]) function returns value rounded. Digits is the number of digits to which you want to round that number. If digits is zero or omitted, value is rounded up to the nearest integer. If digits is smaller than zero, the corresponding integer part of the number is rounded.</Text>
1119                     <Syntax>ROUND(value;[digits])</Syntax>
1120                     <Example>ROUND(1.252;2) equals 1.25</Example>
1121                     <Example>ROUND(-1.252;2) equals -1.25</Example>
1122                     <Example>ROUND(1.258;2) equals 1.26</Example>
1123                     <Example>ROUND(-12.25;-1) equals -10</Example>
1124                     <Example>ROUND(-1.252;0) equals -1</Example>
1125                     <Related>MROUND</Related>
1126                     <Related>ROUNDDOWN</Related>
1127                     <Related>ROUNDUP</Related>
1128                 </Help>
1129             </Function>
1130 
1131             <Function>
1132                 <Name>ROUNDUP</Name>
1133                 <Type>Float</Type>
1134                 <Parameter>
1135                     <Comment>Floating point value</Comment>
1136                     <Type>Float</Type>
1137                 </Parameter>
1138                 <Parameter>
1139                     <Comment>Digits</Comment>
1140                     <Type>Int</Type>
1141                 </Parameter>
1142                 <Help>
1143                     <Text>The ROUNDUP(value;[digits]) function returns value rounded so that its absolute value is greater. Digits is the number of digits to which you want to round that number. If digits is zero or omitted, value is rounded up to the nearest integer.</Text>
1144                     <Syntax>ROUNDUP(value;[digits])</Syntax>
1145                     <Example>ROUNDUP(1.252) equals 2</Example>
1146                     <Example>ROUNDUP(1.252;2) equals 1.26</Example>
1147                     <Example>ROUNDUP(-1.252;2) equals -1.26</Example>
1148                     <Example>ROUNDUP(-1.252) equals -2</Example>
1149                     <Related>ROUND</Related>
1150                     <Related>ROUNDDOWN</Related>
1151                 </Help>
1152             </Function>
1153 
1154             <Function>
1155                 <Name>ROUNDDOWN</Name>
1156                 <Type>Float</Type>
1157                 <Parameter>
1158                     <Comment>Floating point value</Comment>
1159                     <Type>Float</Type>
1160                 </Parameter>
1161                 <Parameter>
1162                     <Comment>Digits</Comment>
1163                     <Type>Int</Type>
1164                 </Parameter>
1165                 <Help>
1166                     <Text>The ROUNDDOWN(value;[digits]) function returns value rounded so that its absolute value is lesser. Digits is the number of digits to which you want to round that number. If digits is zero or omitted, value is rounded down to the nearest integer.</Text>
1167                     <Syntax>ROUNDDOWN(value;[digits])</Syntax>
1168                     <Example>ROUNDDOWN(1.252) equals 1</Example>
1169                     <Example>ROUNDDOWN(1.252;2) equals 1.25</Example>
1170                     <Example>ROUNDDOWN(-1.252;2) equals -1.25</Example>
1171                     <Example>ROUNDDOWN(-1.252) equals -1</Example>
1172                     <Related>ROUND</Related>
1173                     <Related>ROUNDUP</Related>
1174                 </Help>
1175             </Function>
1176 
1177             <Function>
1178                 <Name>FIB</Name>
1179                 <Type>Float</Type>
1180                 <Parameter>
1181                     <Comment>Nth term</Comment>
1182                     <Type>Float</Type>
1183                 </Parameter>
1184                 <Help>
1185                     <Text>Function FIB calculates the Nth term of a Fibonacci sequence (1, 1, 2, 3, 5, 8, 13, 21...), in which each number, after the first two, is the sum of the two numbers immediately preceding it. FIB(0) is defined to be 0.</Text>
1186                     <Syntax>FIB(n)</Syntax>
1187                     <Example>FIB(9) returns 34</Example>
1188                     <Example>FIB(26) returns 121393</Example>
1189                 </Help>
1190             </Function>
1191 
1192             <Function>
1193                 <Name>QUOTIENT</Name>
1194                 <Type>Int</Type>
1195                 <Parameter>
1196                     <Comment>Numerator</Comment>
1197                     <Type>Float</Type>
1198                 </Parameter>
1199                 <Parameter>
1200                     <Comment>Denumerator</Comment>
1201                     <Type>Float</Type>
1202                 </Parameter>
1203                 <Help>
1204                     <Text>Function QUOTIENT returns the integer portion of numerator/denumerator.</Text>
1205                     <Syntax>QUOTIENT(numerator;denumerator)</Syntax>
1206                     <Example>QUOTIENT(21;4) returns 5</Example>
1207                     <Related>INT</Related>
1208                 </Help>
1209             </Function>
1210 
1211             <Function>
1212                 <Name>MDETERM</Name>
1213                 <Type>Float</Type>
1214                 <Parameter>
1215                     <Comment>Range</Comment>
1216                     <Type range="true">Float</Type>
1217                 </Parameter>
1218                 <Help>
1219                     <Text>Function MDETERM returns the determinant of a given matrix. The matrix must be of type n x n.</Text>
1220                     <Syntax>MDETERM(matrix)</Syntax>
1221                     <Example>MDETERM(A1:C3)</Example>
1222                     <Related>MMULT</Related>
1223                 </Help>
1224             </Function>
1225 
1226             <Function>
1227                 <Name>MMULT</Name>
1228                 <Type range="true">Float</Type>
1229                 <Parameter>
1230                     <Comment>First matrix</Comment>
1231                     <Type range="true">Float</Type>
1232                 </Parameter>
1233                 <Parameter>
1234                     <Comment>Second matrix</Comment>
1235                     <Type range="true">Float</Type>
1236                 </Parameter>
1237                 <Help>
1238                     <Text>Function MMULT multiplies two matrices. Number of columns of the first matrix must be the same as row count of the second one. The result is a matrix.</Text>
1239                     <Text>Since the result is an array, you need to use Ctrl+Alt+Enter (instead of just Enter) to display the array elements in separate cells.</Text>
1240                     <Syntax>MMULT(matrix1;matrix2)</Syntax>
1241                     <Example>MMULT(A1:C3)</Example>
1242                     <Related>MDETERM</Related>
1243                 </Help>
1244             </Function>
1245 
1246             <Function>
1247                 <Name>MINVERSE</Name>
1248                 <Type range="true">Float</Type>
1249                 <Parameter>
1250                     <Comment>Matrix</Comment>
1251                     <Type range="true">Float</Type>
1252                 </Parameter>
1253                 <Help>
1254                     <Text>Calculates the inverse of the matrix.</Text>
1255                     <Text>The matrix multiplied with its inverse results in the unity matrix of the same dimension.</Text>
1256                     <Text>Invertible matrices have a non-zero determinant.</Text>
1257                     <Text>Since the result is an array, you need to use Ctrl+Alt+Enter (instead of just Enter) to display the array elements in separate cells.</Text>
1258                     <Syntax>MINVERSE(matrix)</Syntax>
1259                     <Example>MINVERSE(A1:C3)</Example>
1260                     <Related>MDETERM</Related>
1261                     <Related>MUNIT</Related>
1262                 </Help>
1263             </Function>
1264 
1265             <Function>
1266                 <Name>MUNIT</Name>
1267                 <Type range="true">Float</Type>
1268                 <Parameter>
1269                     <Comment>Dimension</Comment>
1270                     <Type>Int</Type>
1271                 </Parameter>
1272                 <Help>
1273                     <Text>Creates the unity matrix of the given dimension.</Text>
1274                     <Text>Since the result is an array, you need to use Ctrl+Alt+Enter (instead of just Enter) to display the array elements in separate cells.</Text>
1275                     <Syntax>MUNIT(dimension)</Syntax>
1276                     <Example>MUNIT(3) creates a 3x3 unity matrix</Example>
1277                     <Related>MINVERSE</Related>
1278                 </Help>
1279             </Function>
1280 
1281             <Function>
1282                 <Name>TRANSPOSE</Name>
1283                 <Type range="true">Float</Type>
1284                 <Parameter>
1285                     <Comment>Matrix</Comment>
1286                     <Type range="true">Float</Type>
1287                 </Parameter>
1288                 <Help>
1289                     <Text>Returns the transpose of a matrix, i.e. rows and columns of the matrix are exchanged.</Text>
1290                     <Text>Since the result is an array, you need to use Ctrl+Alt+Enter (instead of just Enter) to display the array elements in separate cells.</Text>
1291                     <Text>Returns the transpose of a matrix, i.e. rows and columns of the matrix are exchanged.</Text>
1292                     <Syntax>TRANSPOSE(matrix)</Syntax>
1293                     <Example>TRANSPOSE(A1:C3)</Example>
1294                 </Help>
1295             </Function>
1296 
1297 </Group>
1298 
1299 </KSpreadFunctions>