Ayuda de LibreOffice 25.2
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
Returns the cosine of a complex number.
Returns the hyperbolic cosine of a complex number.
Returns the cotangent of a complex number.
Returns the cosecant of a complex number.
Returns the hyperbolic cosecant of a complex number.
Returns the secant of a complex number.
Returns the hyperbolic secant of a complex number.
Returns the sine of a complex number.
Returns the hyperbolic sine of a complex number.
Returns the tangent of a complex number.
Convierte un valor d'una unidá de midida al valor correspondiente n'otra unidá de midida.
La resultancia ye un númberu complexu creáu a partir d'un coeficiente real y un coeficiente imaxinariu.
COMPLEX(RealNum; INum [; Suffix])
NúmberuReal ye'l coeficiente real d'un númberu complexu.
INum ye'l coeficiente imaxinariu d'un númberu complexu.
Sufixu ye una llista d'opciones, "i" o "j".
=COMPLEXU(3;4;"j") devuelve 3+4j.
La resultancia ye'l factorial del númberu en medríes de 2.
FACT.DOBLE(Númberu)
Devuelve Númberu !!, el factorial doble de Númberu, onde Númberu ye un númberu enteru mayor o igual a cero.
For even numbers FACTDOUBLE(n) returns:
2*4*6*8* ... *n
For odd numbers FACTDOUBLE(n) returns:
1*3*5*7* ... *n
FACT.DOBLE(0) devuelve 1 por definición.
=FACT.DOBLE(5) devuelve 15.
=FACT.DOBLE(6) devuelve 48.
=FACT.DOBLE(0) devuelve 1.
La resultancia ye'l valor absolutu d'un númberu complexu.
IM.ABS("Númberu Complexu")
NúmberuComplexu ye un númberu complexu que s'introduz como "x+yi" o "x+yj".
=IM.ABS("5+12j") devuelve 13.
La resultancia ye l'argumentu (ángulu phi) d'un númberu complexu.
IM.ÁNGULU("Númberu Complexu")
=IM.ÁNGULU("3+4j") devuelve 0,927295.
La resultancia ye'l complementu complexu conxugáu d'un númberu complexu.
IM.CONXUGADA("Númberu Complexu")
=IM.CONXUGADA("1+j") devuelve 1-j.
La resultancia ye la división de dos númberos complexos.
IM.DIV("Numberador"; "Denominador")
Numberador, Denominador son númberos complexos que s'especifiquen col formatu "x+yi" o "x+yj".
=IM.DIV("-238+240i";"10+24i") devuelve 5+12i.
La resultancia ye la potencia de y y el númberu complexu. La constante y tien un valor averáu de 2,71828182845904.
IM.EXP("Númberu Complexu")
=IM.EXP("1+j") devuelve 1,47+2,29j (arrondáu).
La resultancia ye'l llogaritmu natural (en base y) d'un númberu complexu. La constante y tien un valor averáu de 2,71828182845904.
IM.LN("Númberu Complexu")
=IM.LN("1+j") devuelve 0,35+0,79j (arrondáu).
La resultancia ye'l llogaritmu común (en base 10) d'un númberu complexu.
IM.LOG10("Númberu Complexu")
=IM.LOG10("1+j") devuelve 0,15+0,34j (arrondáu).
La resultancia ye'l llogaritmu binariu d'un númberu complexu.
IM.LOG2("Númberu Complexu")
=IM.LOG2("1+j") devuelve 0,50+1,13j (arrondáu).
The result is the ComplexNumber raised to the power of Number.
IM.POT("Númberu Complexu"; Númberu)
Númberu ye l'esponente.
=IM.POT("2+3i";2) devuelve -5+12i.
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=IM.PRODUCT("3+4j";"5-3j") devuelve 27+11j.
La resultancia ye'l raigañu cuadráu d'un númberu complexu.
IM.RAIZ2("Númberu Complexu")
=IM.RAIZ2("3+4i") devuelve 2+1i.
La resultancia ye'l coeficiente real d'un númberu complexu.
IM.REAL("Númberu Complexu")
=IM.REAL("1+3j") devuelve 1.
The result is the sum of a set of complex numbers.
IMSUM(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=IM.SUM("13+4j";"5+3j") devuelve 18+7j.
La resultancia ye la sustraición de dos númberos complexos.
IM.SUSTR("Númberu Complexu1"; "Númberu Complexu2")
=IM.SUB("13+4j";"5+3j") devuelve 8+7j.
La resultancia ye'l coeficiente imaxinariu d'un númberu complexu.
IMAXINARIU("Númberu Complexu")
=IMAXINARIU("4+3j") devuelve 3.
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.
Cifres ye'l númberu d'espacios totales.
=OCT2BIN("3";3) returns "011".
The result is the number for the octal number string entered.
OCT.A.DEC(Númberu)
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.
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.
Cifres ye'l númberu d'espacios totales.
=OCT2HEX("144";4) returns "0064".