Ajuda del LibreOffice 24.8
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
Retorna el cosinus d'un nombre complex.
Retorna el cosinus hiperbòlic d'un nombre complex.
Retorna la cotangent d'un nombre complex.
Retorna la cosecant d'un nombre complex.
Retorna la cosecant hiperbòlica d'un nombre complex.
Retorna la secant d'un nombre complex.
Retorna la secant hiperbòlica d'un nombre complex.
Retorna el sinus d'un nombre complex.
Retorna el sinus hiperbòlic d'un nombre complex.
Retorna la tangent d'un nombre complex.
Converts a value from one unit of measurement to the corresponding value in another unit of measurement.
El resultat és el valor absolut d'un nombre complex.
ABSIM("NombreComplex")
NombreComplex és un nombre complex que s'introdueix així: "x+yi" o "x+yj".
=ABSIM("5+12j") retorna 13.
El resultat és l'argument (l'angle phi) d'un nombre complex.
ARGUMENTIM("NombreComplex")
=ARGUMENTIM("3+4j") retorna 0,927295.
El resultat és l'arrel quadrada d'un nombre complex.
ARRELQIM("NombreComplex")
=ARRELQIM("3+4i") retorna 2+1i.
El resultat és un nombre complex que es retorna a partir d'un coeficient real i d'un coeficient imaginari.
COMPLEX(RealNum; INum [; Suffix])
NumReal és el coeficient real del nombre complex.
NumI és el coeficient imaginari d'un nombre complex.
Sufix és una llista d'opcions, "i" o "j".
=COMPLEX(3;4;"j") retorna 3+4j.
El resultat és el complement conjugat d'un nombre complex.
CONJUGATIM("NombreComplex")
=CONJUGATIM("1+j") retorna 1-j.
El resultat és la divisió de dos nombres complexos.
DIVIM("Numerador"; "Denominador")
Numerador, Denominador són nombres complexos que s'introdueixen en la forma "x+yi" o "x+yj".
=DIVIM("-238+240i";"10+24i") retorna 5+12i.
Retorna el doble factorial d'un nombre.
DOBLEFACT(Nombre)
Retorna Nombre !!, el doble factorial de Nombre, on Nombre és un enter més gran o igual a zero.
Per als nombres parells, DOBLEFACT(n) retorna:
2*4*6*8* ... *n
Per als nombres senars, DOBLEFACT(n) retorna:
1*3*5*7* ... *n
DOBLEFACT(0) retorna 1 per definició.
=DOBLEFACT(5) retorna 15.
=DOBLEFACT(6) retorna 48.
=DOBLEFACT(0) retorna 1.
El resultat és la potència d'e i el nombre complex. La constant e té un valor aproximat de 2,71828182845904.
EXPIM("NombreComplex")
=EXPIM("1+j") retorna 1,47+2,29j (arrodonit).
El resultat és el coeficient imaginari d'un nombre complex.
IMAGINARI("NombreComplex")
=IMAGINARI("4+3j") retorna 3.
El resultat és el logaritme natural (a la base e) d'un nombre complex. La constant e té un valor d'aproximadament 2,71828182845904.
LNIM("NombreComplex")
=LNIM("1+j") retorna 0,35+0,79j (arrodonit).
El resultat és el logaritme comú (a la base 10) d'un nombre complex.
LOG10IM("NombreComplex")
=LOG10IM("1+j") retorna 0,15+0,34j (arrodonit).
El resultat és el logaritme binari d'un nombre complex.
LOG2IM("NombreComplex")
=LOG2IM("1+j") retorna 0,50+1,13j (arrodonit).
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.
Xifres és el nombre de xifres que s'han de retornar.
=OCT2BIN("3";3) returns "011".
The result is the number for the octal number string entered.
OCTADEC(Nombre)
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.
Xifres és el nombre de xifres que s'han de retornar.
=OCT2HEX("144";4) returns "0064".
El resultat és el NombreComplex elevat a la potència de Nombre.
POTENCIAIM("NombreComplex"; Nombre)
Nombre és l'exponent.
=POTENCIAIM("2+3i";2) retorna -5+12i.
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=PRODUCTEIM("3+4j";"5-3j") retorna 27+11j.
El resultat és el coeficient real d'un nombre complex.
REALIM("NombreComplex")
=REALIM("1+3j") retorna 1.
El resultat és una resta de dos nombres complexos.
SUBIM("NombreComplex1"; "NombreComplex2")
=SUBIM("13+4j";"5+3j") retorna 8+j.
The result is the sum of a set of complex numbers.
IMSUM(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=SUMAIM("13+4j";"5+3j") retorna 18+7j.