Aide LibreOffice 7.4
Ces fonctions de l'Add-in sont fournies par le service UNOcom.sun.star.sheet.addin.Analysis.
Calcule la fonction de Bessel modifiée de la premiÚre façon In(x).
BESSELI(X;N)
X est la valeur sur laquelle la fonction va ĂȘtre calculĂ©e.
N est un nombre entier positif (N >=0) représentant l'ordre de la fonction Bessel In(x)
=BESSELI(3,45, 4), renvoie 0,651416873060081
=BESSELI(3,45, 4.333), renvoie 0,651416873060081, le mĂȘme rĂ©sultat que ci-dessus parce que la part fractionnelle de N est ignorĂ©e.
=BESSELI(-1, 3), renvoie -0,022168424924332
Calcule la fonction Bessel de la premiÚre façon Jn(x) (fonction cylindre).
BESSELJ(X;N)
X est la valeur sur laquelle la fonction va ĂȘtre calculĂ©e.
N est un nombre entier positif (N >=0) représentant l'ordre de la fonction Bessel Jn(x)
=BESSELJ(3,45, 4), renvoie 0,196772639864984
=BESSELI(3,45, 4,333), renvoie 0,196772639864984, le mĂȘme rĂ©sultat que ci-dessus parce que la part fractionnelle de N est ignorĂ©e.
=BESSELJ(-1, 3), renvoie -0,019563353982668
Calcule la fonction Bessel modifiée de la seconde façon Kn(x).
BESSELK(X;N)
X est la valeur strictement positive (X > 0) sur laquelle la fonction est calculée.
N est un nombre entier positif (N >=0) représentant l'ordre de la fonction Bessel Kn(x)
=BESSELK(3,45, 4), renvoie 0,144803466373734
=BESSELK(3,45, 4.333), renvoie 0,144803466373734, le mĂȘme rĂ©sultat que ci-dessus parce que la part fractionnelle de N est ignorĂ©e.
=BESSELK(0, 3), renvoie Err:502 â argument incorrect (X=0)
Calcule la fonction Bessel de la seconde façon Yn(x).
BESSELY(X;N)
X est la valeur strictement positive (X > 0) sur laquelle la fonction est calculée.
N est un nombre entier positif (N >=0) représentant l'ordre de la fonction Bessel Yn(x)
=BESSELY(3,45, 4), renvoie -0,679848116844476
=BESSELY(3,45, 4.333), renvoie 0,651416873060081, le mĂȘme rĂ©sultat que ci-dessus parce que la part fractionnelle de N est ignorĂ©e.
=BESSELY(0, 3), renvoie Err:502 â argument incorrect (X=0)
The result is the number for the binary (base-2) number string entered.
BINDEC(nombre)
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.
BINHEX(nombre[;chiffres])
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.
BINOCT(nombre[;chiffres])
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.
chiffres signifie le nombre de chiffres Ă renvoyer.
=BIN2OCT("1100100";4) returns "0144".
The result is the string representing the number in binary (base-2) form for the number entered.
DECBIN(nombre[;chiffres])
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.
chiffres signifie le nombre de chiffres Ă renvoyer.
=DEC2BIN(100;8) returns "01100100".
The result is the string representing the number in hexadecimal form for the number entered.
DECHEX(nombre[;chiffres])
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.
chiffres signifie le nombre de chiffres Ă renvoyer.
=DEC2HEX(100;4) returns "0064".
The result is the string representing the number in octal form for the number entered.
DECOCT(nombre[;chiffres])
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.
chiffres signifie le nombre de chiffres Ă renvoyer.
=DEC2OCT(100;4) returns "0144".
Le résultat est VRAI (1) si les deux nombres constituant l'argument sont égaux et FAUX (0) dans le cas contraire.
DELTA(nombre1[;nombre2])
=DELTA(1;2) renvoie 0.
Renvoie les valeurs d'erreur de l'intégrale de Gauss.
ERF(limite_inférieure[;limite_supérieure])
limite_inférieure est la limite inférieure de l'intégrale.
limite_supérieure est facultatif. C'est la limite supérieure de l'intégrale. Si cette valeur est manquante, le calcul prend place entre 0 et la limite inférieure.
=ERF(0;1) renvoie 0,842701.
Renvoie des valeurs complémentaires d'erreur de l'intégrale de Gauss entre 0 et la limite donnée.
ERF.PRECIS(limite inférieure)
limite inférieure est la limite de l'intégrale. Le calcul prend place entre 0 et cette limite.
=ERF.PRECIS(1) renvoie 0,842701.
COM.MICROSOFT.ERF.PRECISE
Renvoie des valeurs complémentaires d'erreur de l'intégrale de Gauss entre x et l'infini.
ERFC(limite_inférieure)
limite_inférieure est la limite inférieure de l'intégrale
=ERFC(1) renvoie 0,157299.
Renvoie des valeurs complémentaires d'erreur de l'intégrale de Gauss entre x et l'infini.
ERFC.PRECISE(limite_inférieure)
limite_inférieure est la limite inférieure de l'intégrale
=ERFC.PRECISE(1) renvoie 0,157299.
COM.MICROSOFT.ERFC.PRECISE
The result is the string representing the number in binary (base-2) form for the hexadecimal number string entered.
HEXBIN(nombre[;chiffres])
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.
chiffres est le nombre de chiffres auquel arrondir le nombre.
=HEX2BIN("6a";8) returns "01101010".
The result is the number for the hexadecimal number string entered.
HEXDEC(nombre)
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.
=HEXDEC("6a") renvoie 106.
The result is the string representing the number in octal form for the hexadecimal number string entered.
HEXOCT(nombre[;chiffres])
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.
chiffres est le nombre de chiffres auquel arrondir le nombre.
=HEX2OCT("6a";4) returns "0152".
Le résultat est 1 si nombreest supérieur ou égal au seuil.
SUP.SEUIL(nombre[;seuil])
=SUP.SEUIL(5;1) renvoie 1.