Funções Add-in, lista de funções de análise - Parte 1
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
BESSELI
Calcula a função de Bessel modificada do primeiro tipo ln(x).
BESSELI(X; N)
x corresponde ao valor com base no qual a função será calculada.
n é um valor inteiro positivo (n >= 0) que representa a ordem da função de Bessel ln(x).
=BESSELI(3,45;4), devolve 0,651416873060081
=BESSELI(3,45;4,333) devolve 0,651416873060081 porque a parte decimal de n é ignorada.
=BESSELI(-1;3) devolve -0,022168424924332
BESSELJ
Calcula a função de Bessel modificada do primeiro tipo Jn(x) (função cilíndrica).
BESSELJ(X; N)
x corresponde ao valor com base no qual a função será calculada.
n é um valor inteiro positivo (n >= 0) que representa a ordem da função de Bessel Jn(x).
=BESSELJ(3,45, 4) devolve 0,196772639864984
=BESSELJ(3,45;4,333) devolve 0,196772639864984 porque a parte fracionária de n é ignorada.
=BESSELJ(-1, 3) devolve -0,019563353982668
BESSELK
Calcula a função de Bessel modificada do segundo tipo Kn(x).
BESSELK(X; N)
x é o valor positivo (x > 0) com base no qual a função será calculada.
n é um valor inteiro positivo (n >= 0) que representa a ordem da função de Bessel Kn(x).
=BESSELK(3,45, 4), devolve 0,144803466373734
=BESSELK(3,45;4,333) devolve 0,144803466373734 porque a parte fracionária de n é ignorada.
=BESSELK(0;3) devolve Erro:502 – argumento inválido (X=0)
BESSELY
Calcula a função de Bessel do segundo tipo Yn(x).
BESSELY(X; N)
x é o valor positivo (x > 0) com base no qual a função será calculada.
n é o valor inteiro positivo (n >= 0) que representa a ordem da função de Bessel Yn(x).
=BESSELY(3,45;4), devolve -0,679848116844476
= BESSELY(3,45;4,333) devolve -0,679848116844476, igual ao anterior porque a parte fracionária de n é ignorada.
=BESSELY(0;3) devolve Erro:502 – argumento inválido (X=0)
BINADEC
The result is the number for the binary (base-2) number string entered.
BINADEC(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.
BINAHEX
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.
Casas corresponde ao número de casas para saída.
=BIN2HEX("1100100";6) returns "000064".
BINAOCT
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.
Casas corresponde ao número de casas para saída.
=BIN2OCT("1100100";4) returns "0144".
DECABIN
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.
Casas corresponde ao número de casas para saída.
=DEC2BIN(100;8) returns "01100100".
DECAHEX
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.
Casas corresponde ao número de casas para saída.
=DEC2HEX(100;4) returns "0064".
DECAOCT
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.
Casas corresponde ao número de casas para saída.
=DEC2OCT(100;4) returns "0144".
DEGRAU
O resultado é 1 se número for maior ou igual a etapa.
GESTEP(Number [; Step])
=DEGRAU(5;1) devolve 1.
DELTA
O resultado é VERDADEIRO (1) se ambos os números, que são disponibilizados num argumento, forem iguais. Caso contrário, o resulto será FALSO (0).
DELTA(Number1 [; Number2])
=DELTA(1;2) devolve 0.
FUNCERRO
Devolve os valores da integral de erro Gaussiano.
ERF(LowerLimit [; UpperLimit])
limite_inferior é o limite inferior da integral.
limite_superior é opcional. Corresponde ao limite superior do integral. Se este valor estiver em falta, o cálculo é efetuado entre 0 e o limite inferior.
=FUNCERRO(0;1) devolve 0,842701.
FUNCERRO.PRECISO
Devolve os valores do integral de erro Gaussiano entre 0 e o limite indicado.
FUNCERRO.PRECISO(limite_inferior)
limite_inferior é o limite do integral. O cálculo ocorre entre 0 e este limite.
=FUNCERRO.PRECISO(0;1) devolve 0,842701.
COM.MICROSOFT.ERF.PRECISE
FUNCERROCOMPL
Devolve os valores complementares do integral de erro Gaussiano entre x e infinito.
FUNCERROCOMPL(limite_inferior)
limite_inferior é o limite inferior da integral.
=FUNCERROCOMPL(1) devolve 0,157299.
FUNCERROCOMPL.PRECISO
Devolve a função complementar de erro entre x e infinito.
FUNCERROCOMPL.PRECISO(limite_inferior)
limite_inferior é o limite inferior da integral.
=FUNCERROCOMPL.PRECISO(1) devolve 0,157299.
COM.MICROSOFT.ERFC.PRECISE
HEXABIN
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.
casas_decimais é o número de casas decimais utilizadas.
=HEX2BIN("6a";8) returns "01101010".
HEXADEC
The result is the number for the hexadecimal number string entered.
HEXADEC(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.
=HEXADEC("6a") devolve 106.
HEXAOCT
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.
casas_decimais é o número de casas decimais utilizadas.
=HEX2OCT("6a";4) returns "0152".