LibreOffice 7.4 Βοήθεια
Οι συναρτήσεις προσθέτων παρέχονται από την UNO com.sun.star.sheet.addin.Analysis service.
Υπολογίζει την τροποποιημένη συνάρτηση Bessel πρώτης τάξης In(x) .
BESSELI(X; N)
X είναι η τιμή για την οποία πρόκειται να υπολογισθεί η συνάρτηση.
N είναι θετικός ακέραιος (N >= 0) που παριστάνει την τάξη της συνάρτησης Bessel In(x)
=BESSELI(3,45, 4), επιστρέφει 0,651416873060081
=BESSELI(3,45, 4,333), επιστρέφει 0,651416873060081, ίδιο όπως παραπάνω επειδή το κλασματικό μέρος του N παραβλέπεται.
=BESSELI(-1, 3), επιστρέφει -0,022168424924332
Υπολογίζει την συνάρτηση Bessel πρώτης τάξης Jn(x) (συνάρτηση κυλίνδρου).
BESSELJ(Χ, Ν)
X είναι η τιμή για την οποία πρόκειται να υπολογισθεί η συνάρτηση.
N είναι θετικός ακέραιος (N >= 0) που αντιστοιχεί στην τάξη της συνάρτησης Bessel Jn(x)
=BESSELJ(3,45, 4), επιστρέφει 0,196772639864984
=BESSELJ(3,45, 4,333), επιστρέφει 0,196772639864984, ίδιο όπως παραπάνω επειδή το κλασματικό μέρος του N παραβλέπεται.
=BESSELJ(-1, 3), επιστρέφει -0,019563353982668
Υπολογίζει την τροποποιημένη συνάρτηση Bessel δεύτερης τάξης Kn(x) .
BESSELK(Χ, Ν)
X είναι η γνήσια θετική τιμή (X > 0) για την οποία πρόκειται να υπολογιστεί η συνάρτηση.
N είναι θετικός ακέραιος (N >= 0) που αντιστοιχεί στην τάξη της συνάρτησης Bessel Kn(x)
=BESSELK(3,45, 4), επιστρέφει 0,144803466373734
=BESSELI(3,45, 4,333), επιστρέφει 0,144803466373734, ίδιο όπως παραπάνω επειδή το κλασματικό μέρος του N παραβλέπεται.
=BESSELK(0, 3), επιστρέφει Err:502 – άκυρο όρισμα (X=0)
Υπολογίζει την συνάρτηση Bessel δεύτερης τάξης Yn(x) .
BESSELY(Χ, Ν)
X είναι η γνήσια θετική τιμή (X > 0) για την οποία πρόκειται να υπολογιστεί η συνάρτηση.
N είναι θετικός ακέραιος (N >= 0) που αντιστοιχεί στην τάξη της συνάρτησης Bessel Yn(x)
=BESSELY(3,45, 4), δίνει -0,679848116844476
=BESSELY(3,45, 4,333), επιστρέφει -0,679848116844476, ίδιο όπως παραπάνω επειδή το κλασματικό μέρος του N παραβλέπεται.
=BESSELY(0, 3), επιστρέφει Err:502 – άκυρο όρισμα (X=0)
The result is the number for the binary (base-2) number string entered.
BIN2DEC(Αριθμός)
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.
BIN2HEX(Αριθμός [; Θέσεις])
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.
BIN2OCT(Αριθμός [; Θέσεις])
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.
Το Θέσεις αναφέρεται στο πλήθος των ψηφίων που θα εμφανίζονται.
=BIN2OCT("1100100";4) returns "0144".
The result is the string representing the number in binary (base-2) form for the number entered.
DEC2BIN(Αριθμός [; Θέσεις])
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.
Το Θέσεις αναφέρεται στο πλήθος των ψηφίων που θα εμφανίζονται.
=DEC2BIN(100;8) returns "01100100".
The result is the string representing the number in hexadecimal form for the number entered.
DEC2HEX(Αριθμός [; Θέσεις])
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.
Το Θέσεις αναφέρεται στο πλήθος των ψηφίων που θα εμφανίζονται.
=DEC2HEX(100;4) returns "0064".
The result is the string representing the number in octal form for the number entered.
DEC2OCT(Αριθμός [; 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.
Το Θέσεις αναφέρεται στο πλήθος των ψηφίων που θα εμφανίζονται.
=DEC2OCT(100;4) returns "0144".
Το αποτέλεσμα είναι TRUE (1), εάν και οι δύο αριθμοί που παρέχονται ως όρισμα είναι ίσοι, διαφορετικά το αποτέλεσμα είναι FALSE (0).
DELTA(Αριθμός1 [; Αριθμός2])
Το =DELTA(1;2) επιστρέφει 0.
Η συνάρτηση επιστρέφει τιμές του ολοκληρώματος σφάλματος Gauss .
ERF(ΚατώτεροΌριο [; ΑνώτεροΌριο])
Κάτω όριο: το κάτω όριο του ολοκληρώματος.
ΆνωΌριο: είναι προαιρετικό. Είναι το άνω όριο του ολοκληρώματος. Εάν λείπει αυτή η τιμή, ο υπολογισμός γίνεται μεταξύ του 0 και του κάτω ορίου.
Το =ERF(0;1) επιστρέφει 0.842701.
Επιστρέφει τιμές του ολοκληρώματος σφάλματος Gauss μεταξύ του 0 και του άπειρου.
ERF.PRECISE(ΚάτωΌριο)
ΚάτωΌριο είναι το όριο του ολοκληρώματος. Ο υπολογισμός συμβαίνει μεταξύ 0 και αυτού του ορίου.
=ERF.PRECISE(1) επιστρέφει 0,842701.
COM.MICROSOFT.ERF.PRECISE
Η συνάρτηση επιστρέφει συμπληρωματικές τιμές του ολοκληρώματος σφάλματος Γκάους μεταξύ του x και του άπειρου.
ERFC(Κάτω_όριο)
Κάτω όριο: το κάτω όριο του ολοκληρώματος.
Το =ERFC(1) επιστρέφει 0.157299.
>Επιστρέφει συμπληρωματικές τιμές του ολοκληρώματος σφάλματος Γκάους μεταξύ του x και του άπειρου.
ERFC.PRECISE(ΚατώτεροΌριο)
Κάτω όριο: το κάτω όριο του ολοκληρώματος.
Το =ERFC.PRECISE(1) επιστρέφει 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.
HEX2BIN(Αριθμός [; Θέσεις])
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.
Θέσεις είναι ο αριθμός των ψηφίων που θα εξαχθούν.
=HEX2BIN("6a";8) returns "01101010".
The result is the number for the hexadecimal number string entered.
HEX2DEC(Αριθμός)
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.
Το =HEX2DEC("6a")επιστρέφει 106.
The result is the string representing the number in octal form for the hexadecimal number string entered.
HEX2OCT(Αριθμός [; Θέσεις])
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.
Θέσεις είναι ο αριθμός των ψηφίων που θα εξαχθούν.
=HEX2OCT("6a";4) returns "0152".
Το αποτέλεσμα είναι 1 αν ο Αριθμός είναι μεγαλύτερος ή ίσος με το Βήμα.
GESTEP(Αριθμός [; Βήμα])
Η συνάρτηση =GESTEP(5;1) επιστρέφει την τιμή 1.