Categoria add-in - Elenco delle funzioni di analisi 1

note

Le funzioni Add-in vengono fornite dal servizio UNO com.sun.star.sheet.addin.Analysis.


Per accedere a questo comando...

Inserisci - Funzione - Categoria Addin


BESSEL.I

Calcola la funzione modificata di Bessel del primo tipo In(x).

Sintassi

BESSEL.I(X; N)

X: il valore secondo il quale si deve calcolare la funzione.

N è un intero positivo (N >= 0) che rappresenta l'ordine della funzione di Bessel In(x)

Esempio

=BESSEL.I(3,45; 4), restituisce 0,651416873060081

=BESSEL.I(3,45; 4,333), restituisce 0,651416873060081, così come in precedenza, perché la frazione di N viene ignorata.

=BESSEL.I(-1; 3), restituisce -0,022168424924332

BESSEL.J

Calcola la funzione di Bessel del primo tipo Jn(x) (funzione cilindrica).

Sintassi

BESSEL.J(X; N)

X: il valore secondo il quale si deve calcolare la funzione.

N è un intero positivo (N >= 0) che rappresenta l'ordine della funzione di Bessel Jn(x)

Esempio

=BESSEL.J(3,45; 4), restituisce 0,196772639864984

=BESSEL.J(3,45; 4,333), restituisce 0,196772639864984, così come in precedenza, perché la frazione di N viene ignorata.

=BESSEL.J(-1; 3), restituisce -0,019563353982668

BESSEL.K

Calcola la funzione modificata di Bessel del secondo tipo Kn(x).

Sintassi

BESSEL.K(X; N)

X è il valore strettamente positivo (X > 0) secondo il quale si deve calcolare la funzione.

N è l'intero positivo (N >= 0) che rappresenta l'ordine della funzione di Bessel Kn(x)

Esempio

=BESSEL.K(3,45; 4), restituisce 0,144803466373734

=BESSEL.K(3.45, 4.333), restituisce 0,144803466373734, così come in precedenza, perché la frazione di N viene ignorata.

=BESSEL.K(0, 3), restituisce Err:502 – argomento non valido (X=0)

BESSEL.Y

Calcola la funzione di Bessel del secondo tipo Yn(x).

Sintassi

BESSEL.Y(X; N)

X è il valore strettamente positivo (X > 0) secondo il quale si deve calcolare la funzione.

N è un intero positivo (N >= 0) che rappresenta l'ordine della funzione di Bessel Yn(x)

Esempio

=BESSEL.Y(3,45, 4), restituisce -0,679848116844476

=BESSEL.Y(3,45, 4,333), restituisce -0,679848116844476, così come in precedenza, perché la frazione di N viene ignorata.

=BESSEL.Y(0, 3), restituisce Err:502 – argomento non valido (X=0)

BINARIO.DECIMALE

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

Sintassi

BINARIO.DECIMALE(Numero)

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.

Esempio

=BIN2DEC("1100100") returns 100.

BINARIO.HEX

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

Sintassi

BINARIO.HEX(Numero [; Cifre])

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.

Esempio

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

BINARIO.OCT

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

Sintassi

BINARIO.OCT(Numero [; Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

DECIMALE.BINARIO

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

Sintassi

DECIMALE.BINARIO(Numero [; Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

DECIMALE.HEX

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

Sintassi

DECIMALE.HEX(Numero [; Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

DECIMALE.OCT

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

Sintassi

DECIMALE.OCT(Numero [;Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

DELTA

Restituisce VERO (1) se entrambi i numeri forniti come argomento sono uguali, altrimenti restituisce FALSO (0).

Sintassi

DELTA(Numero1 [; Numero2])

Esempio

=DELTA(1; 2) restituisce 0.

FUNZ.ERRORE

Restituisce i valori dell'integrale di Gauss.

Sintassi

FUNZ.ERRORE(Limite inferiore [; Limite superiore])

Limite inferiore è il limite inferiore d'integrazione.

Limite superiore è il limite superiore dell'integrale (opzionale). Se questo valore non viene specificato, il calcolo viene eseguito nell'intervallo compreso tra 0 e il limite inferiore.

Esempio

=FUNZ.ERRORE(0;1) restituisce 0,842701.

FUNZ.ERRORE.COMP.PRECISA

Restituisce i valori complementari dell'integrale di Gauss tra x e infinito.

Sintassi

FUNZ.ERRORE.COMP.PRECISA(Limite inferiore)

Limite inferiore è il limite inferiore d'integrazione.

Esempio

=FUNZ.ERRORE.COMP.PRECISA(1) restituisce 0,157299.

Informazioni tecniche

tip

La funzione è disponibile da LibreOffice 4.3.


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

FUNZ.ERRORE.PRECISA

Restituisce i valori dell'integrale di Gauss tra 0 e il limite indicato.

Sintassi

FUNZ.ERRORE.PRECISA(Limite inferiore)

Limite inferiore è il limite inferiore d'integrazione. Il calcolo viene eseguito tra 0 e questo limite.

Esempio

=FUNZ.ERRORE.PRECISA(1) restituisce 0,842701.

Informazioni tecniche

tip

La funzione è disponibile da LibreOffice 4.3.


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

FUNZIONE.ERRORE.COMP

Restituisce i valori complementari dell'integrale di Gauss tra x e infinito.

Sintassi

FUNZ.ERRORE.COMP(Limite inferiore)

Limite inferiore è il limite inferiore d'integrazione.

Esempio

=FUNZ.ERRORE.COMP(1) restituisce 0,157299.

HEX.BINARIO

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

Sintassi

HEX.BINARIO(Numero [; Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

HEX.DECIMALE

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

Sintassi

HEX.DECIMALE(Numero)

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.

Esempio

=HEX.DECIMALE("6a") restituisce 106.

HEX.OCT

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

Sintassi

HEX.OCT(Numero [; Cifre])

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.

Cifre: numero dei caratteri da usare.

Esempio

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

SOGLIA

Il risultato è 1 se Numero è maggiore o uguale a Valore soglia.

Sintassi

SOGLIA(Numero [; Valore soglia])

Esempio

=SOGLIA(5; 1) restituisce 1.