Add-in Functions, List of Analysis Functions Part Two
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
IMKOS
Returns the cosine of a complex number.
IMKOSH
Returns the hyperbolic cosine of a complex number.
IMKOT
Returns the cotangent of a complex number.
IMKSK
Returns the cosecant of a complex number.
IMKSKH
Returns the hyperbolic cosecant of a complex number.
IMSEK
Returns the secant of a complex number.
IMSEKH
Returns the hyperbolic secant of a complex number.
IMSIN
Returns the sine of a complex number.
IMSINH
Returns the hyperbolic sine of a complex number.
IMTAN
Returns the tangent of a complex number.
CONVERT
Converts a value from one unit of measurement to the corresponding value in another unit of measurement.
BAZ8AL10
The result is the number for the octal number string entered.
BAZ8AL10(Nombro)
Number is a string that represents an octal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
=OCT2DEC("144") returns 100.
BAZ8AL16
The result is the string representing the number in hexadecimal form for the octal number string entered.
OCT2HEX(Number [; Places])
Number is a string that represents an octal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
Places is the number of places to be output.
=OCT2HEX("144";4) returns "0064".
BAZ8AL2
The result is the string representing the number in binary (base-2) form for the octal number string entered.
OCT2BIN(Number [; Places])
Number is a string that represents an octal number. It can have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.
Places is the number of places to be output.
=OCT2BIN("3";3) returns "011".
FAKTDUOBL
Liveras la duoblan faktorialon de nombro.
FAKTDUOBL(Nombro)
Returns Number !!, the double factorial of Number, where Number is an integer greater than or equal to zero.
Por paraj nombroj FAKTDUOBL(n) liveras je:
2*4*6*8* ... *n
Por malparaj nombroj FAKTDUOBL(n) liveras je:
1*3*5*7* ... *n
FAKDUOBL(0) liveras je 1 laÅ difino.
=FAKTDUOBL(6) liveras je 48.
=FAKTDUOBL(6) liveras je 48.
=FAKTDUOBL(6) liveras je 48.
IMABS
La rezulto estas la absoluta valoro de kompleksa numero.
IMABS("ComplexNumber")
ComplexNumber is a complex number that is entered in the form "x+yi" or "x+yj".
=IMABS("5+12j") liveras je 13.
IMAGINARA
La rezulto estas la imaginara koeficiento de kompleksa numero.
IMAGINARY("ComplexNumber")
=IMAGINARA("4+3j") liveras je 3.
IMARGUMENTO
La rezulto estas la argumento (la angulo fi) de kompleksa numero.
IMARGUMENT("ComplexNumber")
=IMARGUMENTO("3+4j") liveras je 0,927295.
IMDIV
La rezulto estas la divido de du kompleksaj numeroj.
IMDIV("Numerator"; "Denominator")
Numerator, Denominator are complex numbers that are entered in the form "x+yi" or "x+yj".
=IMDIV("-238+240i";"10+24i") liveras je 5+12i.
IMEXP
La rezulto estas la potenco de e kaj la kompleksa numero. La konstanto e havas valoron proksimume 2,71828182845904.
IMEXP("ComplexNumber")
=IMEXP("1+j") liveras je 1.47+2.29j (rondigita).
IMKONJUG
La rezulto estas la konjugita kompleksa komplemento al kompleksa numero.
IMCONJUGATE("ComplexNumber")
=IMKONJUG("1+j") liveras je 1-j.
IMLN
La rezulto estas la natura logaritmo (al la bazo e) de kompleksa numero. La konstanto e havas valoron proksimume 2,71828182845904.
IMLN("ComplexNumber")
=IMLN("1+j") liveras je 0,35+0,79j (rondigita).
IMLOG10
La rezulto estas la dekbaza logaritmo (al la bazo 10) de kompleksa numero.
IMLOG10("ComplexNumber")
=IMLOG10("1+j") liveras je 0,15+0,34j (rondigita).
IMLOG2
La rezulto estas la dubaza logaritmo de kompleksa numero.
IMLOG2("ComplexNumber")
=IMLOG2("1+j") liveras je 0,50+1,13j (rondigita).
IMPOT
The result is the ComplexNumber raised to the power of Number.
IMPOWER("ComplexNumber"; Number)
Number is the exponent.
=IMPOT("2+3i";2) liveras je -5+12i.
IMPRODUTO
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; ⦠[; Complex 255]]])
=IMPRODUTO("3+4j";"5-3j") liveras je 27+11j.
IMRAD
La rezulto estas la kvadrata radiko de kompleksa numero.
IMSQRT("ComplexNumber")
=IMRAD("3+4i") liveras je 2+1i.
IMREEL
La rezulto estas la reela koeficiento de kompleksa numero.
IMREAL("ComplexNumber")
=IMREEL("1+3j") liveras je 1.
IMSUB
La rezulto estas la diferenco inter du kompleksaj numeroj.
IMSUB("ComplexNumber1"; "ComplexNumber2")
=IMSUB("13+4j";"5+3j") liveras je 8+j.
IMSUM
The result is the sum of a set of complex numbers.
IMSUM(Complex 1 [; Complex 2 [; ⦠[; Complex 255]]])
=IMSUM("13+4j";"5+3j") liveras je 18+7j.
KOMPLEKSA
La rezulto estas kompleksa numero kiu devenas de reela koeficiento kaj imaginara koeficiento.
COMPLEX(RealNum; INum [; Suffix])
RealNum is the real coefficient of the complex number.
INum is the imaginary coefficient of the complex number.
Suffix is a list of options, "i" or "j".
=IMRAD("3+4i") liveras je 2+1i.