Funciones de complemento. Lista de funciones de análisis, parte 1

note

Las funciones de complemento las proporciona el servicio com.sun.star.sheet.addin.Analysis de UNO.


Para acceder a esta orden…

Insertar ▸ Función ▸ categoría Complemento


BESSELI

Calcula la función de Bessel modificada del primer tipo In(x).

Sintaxis

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)

Ejemplo

=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

BESSELJ

Calcula la función de Bessel del primer tipo Jn(x) (función cilíndrica).

Sintaxis

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)

Ejemplo

=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

BESSELK

Calcula la función de Bessel modificada del segundo tipo Kn(x).

Sintaxis

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)

Ejemplo

=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)

BESSELY

Calcula la función de Bessel del segundo tipo Yn(x).

Sintaxis

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)

Ejemplo

=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)

BIN.A.DEC

The result is the number for the binary (base-2) number string entered.

Sintaxis

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.

Ejemplo

=BIN2DEC("1100100") returns 100.

BIN.A.HEX

The result is the string representing the number in hexadecimal form for the binary (base-2) number string entered.

Sintaxis

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.

Ejemplo

=BIN2HEX("1100100";6) returns "000064".

BIN.A.OCT

The result is the string representing the number in octal form for the binary (base-2) number string entered.

Sintaxis

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.

Ejemplo

=BIN2OCT("1100100";4) returns "0144".

DEC.A.BIN

The result is the string representing the number in binary (base-2) form for the number entered.

Sintaxis

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.

Ejemplo

=DEC2BIN(100;8) returns "01100100".

DEC.A.HEX

The result is the string representing the number in hexadecimal form for the number entered.

Sintaxis

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.

Ejemplo

=DEC2HEX(100;4) returns "0064".

DEC.A.OCT

The result is the string representing the number in octal form for the number entered.

Sintaxis

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.

Ejemplo

=DEC2OCT(100;4) returns "0144".

DELTA

El resultado es VERDADERO (1) si ambos argumentos numéricos son iguales; en caso contrario, es FALSO (0).

Sintaxis

DELTA(Number1 [; Number2])

Ejemplo

=DELTA(1;2) devuelve 0.

FUN.ERROR

Devuelve los valores del error de la integral de Gauss.

Sintaxis

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.

Ejemplo

=FUN.ERROR(0;1) devuelve 0.842701.

FUN.ERROR.COMPL

Devuelve los valores complementarios del error de la integral de Gauss entre x e infinito.

Sintaxis

FUN.ERROR.COMPL(LímiteInferior)

LímiteInferior es el límite inferior de la integral.

Ejemplo

=FUN.ERROR.COMPL(1) devuelve 0.157299.

FUN.ERROR.COMPL.EXACTO

Devuelve valores complementarios de la integral de error gaussiana entre x y el infinito.

Sintaxis

FUN.ERROR.COMPL.EXACTO(LímiteInferior)

LímiteInferior es el límite inferior de la integral.

Ejemplo

=FUN.ERROR.COMPL.EXACTO(1) devuelve 0,157299.

Información técnica

tip

Esta función está disponible desde la versión 4.3 de LibreOffice


This function is not part of the Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format standard. The name space is

COM.MICROSOFT.ERFC.PRECISE

FUN.ERROR.EXACTO

Devuelve los valores de la integral de error de Gauss entre 0 y el límite proporcionado.

Sintaxis

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.

Ejemplo

=FUN.ERROR.EXACTO(1) devuelve 0,842701.

Información técnica

tip

Esta función está disponible desde la versión 4.3 de LibreOffice


This function is not part of the Open Document Format for Office Applications (OpenDocument) Version 1.3. Part 4: Recalculated Formula (OpenFormula) Format standard. The name space is

COM.MICROSOFT.ERF.PRECISE

HEX.A.BIN

The result is the string representing the number in binary (base-2) form for the hexadecimal number string entered.

Sintaxis

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.

Ejemplo

=HEX2BIN("6a";8) returns "01101010".

HEX.A.DEC

The result is the number for the hexadecimal number string entered.

Sintaxis

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.

Ejemplo

=HEX.A.DEC("6a") devuelve 106.

HEX.A.OCT

The result is the string representing the number in octal form for the hexadecimal number string entered.

Sintaxis

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.

Ejemplo

=HEX2OCT("6a";4) returns "0152".

MAYOR.O.IGUAL

El resultado es 1 si Número es mayor que o igual a Paso.

Sintaxis

GESTEP(Number [; Step])

Ejemplo

=MAYOR.O.IGUAL(5;1) devuelve 1.