Ayuda de LibreOffice 7.4
Las funciones de complemento las proporciona el servicio com.sun.star.sheet.addin.Analysis de UNO.
Calcula la función de Bessel modificada del primer tipo In(x).
BESSELI(X; N)
X es el valor sobre el que la función se calculará.
N es un entero positivo (N >= 0) que representa el orden de la función de Bessel ln(x)
=BESSELI(3.45, 4) devuelve 0,651416873060081
=BESSELI(3.45, 4.333) devuelve 0,651416873060081, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N.
=BESSELI(-1, 3) devuelve −0,022168424924332
Calcula la función de Bessel del primer tipo Jn(x) (función cilíndrica).
BESSELJ(X; N)
X es el valor sobre el que la función se calculará.
N es un entero positivo (N >= 0) que representa el orden de la función de Bessel Jn(x)
=BESSELJ(3.45, 4) devuelve 0,196772639864984
=BESSELJ(3.45, 4.333) devuelve 0,196772639864984, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N.
=BESSELJ(-1, 3) devuelve −0,019563353982668
Calcula la función de Bessel modificada del segundo tipo Kn(x).
BESSELK(X; N)
X es el valor estrictamente positivo (X > 0) con el que se calculará la función.
N es un entero positivo (N >= 0) que representa el orden de la función de Bessel Kn(x)
=BESSELK(3.45, 4) devuelve 0,144803466373734
=BESSELK(3.45, 4.333) devuelve 0,144803466373734, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N.
=BESSELK(0, 3) devuelve Err:502: argumento no válido (X=0)
Calcula la función de Bessel del segundo tipo Yn(x).
BESSELY(X; N)
X es el valor estrictamente positivo (X > 0) con el que se calculará la función.
N es un entero positivo (N >= 0) que representa el orden de la función de Bessel Yn(x)
=BESSELY(3.45, 4) devuelve −0,679848116844476
=BESSELY(3.45, 4.333) devuelve −0,679848116844476, igual que el ejemplo anterior: esto es porque se ha pasado por alto la parte fraccional de N.
=BESSELY(0, 3) devuelve Err:502: argumento no válido (X=0)
The result is the number for the binary (base-2) number string entered.
HEX.A.DEC(Número)
Number is a string representing a binary (base-2) number. It can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement.
=BIN2DEC("1100100") returns 100.
The result is the string representing the number in hexadecimal form for the binary (base-2) number string entered.
BIN2HEX(Number [; Places])
Number is a string representing a binary (base-2) number. It can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement.
Places means the number of places to be output.
=BIN2HEX("1100100";6) returns "000064".
The result is the string representing the number in octal form for the binary (base-2) number string entered.
BIN2OCT(Number [; Places])
Number is a string representing a binary (base-2) number. It can have a maximum of 10 places (bits). The most significant bit is the sign bit. Negative numbers are entered as two's complement.
Cifras significa el número de espacios totales.
=BIN2OCT("1100100";4) returns "0144".
The result is the string representing the number in binary (base-2) form for the number entered.
DEC2BIN(Number [; Places])
Number is a number between -512 and 511. If Number is negative, the function returns a binary number string with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value.
Cifras significa el número de espacios totales.
=DEC2BIN(100;8) returns "01100100".
The result is the string representing the number in hexadecimal form for the number entered.
DEC2HEX(Number [; Places])
Number is a number. If Number is negative, the function returns a hexadecimal number string with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value.
Cifras significa el número de espacios totales.
=DEC2HEX(100;4) returns "0064".
The result is the string representing the number in octal form for the number entered.
DEC2OCT(Number [; Places])
Number is a number. If Number is negative, the function returns an octal number string with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value.
Cifras significa el número de espacios totales.
=DEC2OCT(100;4) returns "0144".
El resultado es VERDADERO (1) si ambos argumentos numéricos son iguales; en caso contrario, es FALSO (0).
DELTA(Number1 [; Number2])
=DELTA(1;2) devuelve 0.
Devuelve los valores del error de la integral de Gauss.
ERF(LowerLimit [; UpperLimit])
LímiteInferior es el límite inferior de la integral.
UpperLimit is optional. It is the upper limit of the integral. If this value is missing, the calculation takes place between 0 and the lower limit.
=FUN.ERROR(0;1) devuelve 0.842701.
Devuelve los valores complementarios del error de la integral de Gauss entre x e infinito.
FUN.ERROR.COMPL(LímiteInferior)
LímiteInferior es el límite inferior de la integral.
=FUN.ERROR.COMPL(1) devuelve 0.157299.
Devuelve valores complementarios de la integral de error gaussiana entre x y el infinito.
FUN.ERROR.COMPL.EXACTO(LímiteInferior)
LímiteInferior es el límite inferior de la integral.
=FUN.ERROR.COMPL.EXACTO(1) devuelve 0,157299.
COM.MICROSOFT.ERFC.PRECISE
Devuelve los valores de la integral de error de Gauss entre 0 y el límite proporcionado.
FUN.ERROR.EXACTO(LímiteInferior)
LímiteInferior es el límite de la integral. El cálculo se efectúa entre 0 y este límite.
=FUN.ERROR.EXACTO(1) devuelve 0,842701.
COM.MICROSOFT.ERF.PRECISE
The result is the string representing the number in binary (base-2) form for the hexadecimal number string entered.
HEX2BIN(Number [; Places])
Number is a string that represents a hexadecimal 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.
Cifras es el número de espacios totales.
=HEX2BIN("6a";8) returns "01101010".
The result is the number for the hexadecimal number string entered.
HEX.A.DEC(Número)
Number is a string that represents a hexadecimal 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.
=HEX.A.DEC("6a") devuelve 106.
The result is the string representing the number in octal form for the hexadecimal number string entered.
HEX2OCT(Number [; Places])
Number is a string that represents a hexadecimal 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.
Cifras es el número de espacios totales.
=HEX2OCT("6a";4) returns "0152".
El resultado es 1 si Número es mayor que o igual a Paso.
GESTEP(Number [; Step])
=MAYOR.O.IGUAL(5;1) devuelve 1.