Hilfe fĂĽr LibreOffice 7.4
Die Plug-in-Funktionen werden vom Service UNO com.sun.star.sheet.addin.Analysis bereitgestellt.
Berechnet die modifizierte Besselfunktion der ersten Gattung In(x).
BESSELI(X; N)
X ist der Wert, mit dem die Funktion berechnet wird.
N ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion In(x) angibt.
=BESSELI(3,45;4) ergibt 0,651416873060081
=BESSELI(3,45;4,333) ergibt 0,651416873060081, das selbe wie oben, da der Anteil N ignoriert wird.
=BESSELI(-1;3) ergibt -0,022168424924332
Berechnet die Besselfunktion der ersten Gattung Jn(x) (Zylinderfunktion).
BESSELJ(X; N)
X ist der Wert, mit dem die Funktion berechnet wird.
N ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Jn(x) angibt.
=BESSELJ(3,45;4) ergibt 0,196772639864984
=BESSELJ(3,45;4,333) ergibt 0,196772639864984, das selbe wie oben, da der Anteil N ignoriert wird.
=BESSELJ(-1;3) ergibt -0,019563353982668
Berechnet die modifizierte Besselfunktion der zweiten Gattung Kn(x).
BESSELK(X; N)
X ist der notwendigerweise positive Wert (X > 0), mit dem die Funktion berechnet wird.
N ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Kn(x) angibt.
=BESSELK(3,45;4) ergibt 0,144803466373734
=BESSELK(3,45;4,333) ergibt 0,144803466373734, das selbe wie oben, da der Anteil N ignoriert wird.
=BESSELK(0;3) ergibt Err:502 – ungültiges Argument (X=0)
Berechnet die Besselfunktion der zweiten Gattung Yn(x).
BESSELY(X; N)
X ist der notwendigerweise positive Wert (X > 0), mit dem die Funktion berechnet wird.
N ist eine positive ganze Zahl (N >= 0), welche die Ordnung der Besselfunktion Yn(x) angibt.
=BESSELY(3,45;4) ergibt -0,679848116844476
=BESSELY(3,45;4,333) ergibt -0,679848116844476, das selbe wie oben, da der Anteil N ignoriert wird.
=BESSELY(0;3) ergibt Err:502 – ungültiges Argument (X=0)
The result is the number for the binary (base-2) number string entered.
BININDEZ(Zahl)
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.
BININHEX(Zahl [; Stellen])
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.
BININOKT(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=BIN2OCT("1100100";4) returns "0144".
Das Ergebnis ist WAHR (1), wenn beide Zahlen, die als Argument ĂĽbergeben werden, gleich sind, sonst FALSCH (0).
DELTA(Zahl 1 [; Zahl 2])
=DELTA(1;2) ergibt 0.
The result is the string representing the number in binary (base-2) form for the number entered.
DEZINBIN(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=DEC2BIN(100;8) returns "01100100".
The result is the string representing the number in hexadecimal form for the number entered.
DEZINHEX(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=DEC2HEX(100;4) returns "0064".
The result is the string representing the number in octal form for the number entered.
DEZINOKT(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=DEC2OCT(100;4) returns "0144".
Liefert die Werte zur GauĂź'schen Fehlerfunktion zwischen 0 und gegebener Grenze.
GAUSSF.GENAU(Untergrenze)
Untergrenze ist die Grenze des Integrals. Die Berechnung findet zwischen 0 und diesem Wert statt.
=GAUSSF.GENAU(1) ergibt 0,842701.
COM.MICROSOFT.ERF.PRECISE
Ergibt Werte der GauĂź'schen Fehlerfunktion.
GAUSSFEHLER(Unterer Grenzwert [; Oberer Grenzwert])
Unterer Grenzwert ist der untere Grenzwert des Integralwerts.
Oberer Grenzwert ist optional. Es handelt sich um den oberen Grenzwert des Integralwerts. Fehlt dieser Wert, erfolgt die Berechnung zwischen 0 und dem unteren Grenzwert.
=GAUSSFEHLER(0;1) ergibt 0,842701.
Ergibt Komplementärwerte zur Gauß'schen Fehlerfunktion zwischen x und Unendlich.
GAUSSFKOMPL(UntererGrenzwert)
UntererGrenzwert ist der untere Grenzwert des Integralwerts
=GAUSSFKOMPL(1) ergibt 0,157299.
Ergibt Komplementärwerte zur Gauß'schen Fehlerfunktion zwischen x und Unendlich.
GAUSSFKOMPL.GENAU(UntererGrenzwert)
UntererGrenzwert ist der untere Grenzwert des Integralwerts
=GAUSSFKOMPL.GENAU(1) ergibt 0,157299.
COM.MICROSOFT.ERFC.PRECISE
Das Ergebnis ist 1, wenn Zahl größer als oder gleich groß wie Schwellenwert.
GGANZZAHL(Zahl [; Schwellenwert])
=GGANZZAHL(5;1) ergibt 1.
The result is the string representing the number in binary (base-2) form for the hexadecimal number string entered.
HEXINBIN(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=HEX2BIN("6a";8) returns "01101010".
The result is the number for the hexadecimal number string entered.
HEXINDEZ(Zahl)
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.
=HEXINDEZ("6a") ergibt 106.
The result is the string representing the number in octal form for the hexadecimal number string entered.
HEXINOKT(Zahl [; Stellen])
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.
Stellen bezieht sich auf die Anzahl der Stellen, die ausgegeben werden.
=HEX2OCT("6a";4) returns "0152".