Помощ за LibreOffice 7.4
Функциите от приставки се осигуряват от UNO услугата com.sun.star.sheet.addin.Analysis.
Изчислява модифицираната Беселова функция от първи род In(x).
BESSELI(X; N)
X е стойността, за която се изчислява функцията.
N е положително цяло число (N >= 0), представящо порядъка на Беселовата функция In(x).
=BESSELI(3,45; 4) връща 0,651416873060081
=BESSELI(3,45; 4,333) връща 0,651416873060081, също като по-горе, защото дробната част на N се игнорира.
=BESSELI(-1; 3) връща -0,022168424924332
Изчислява Беселовата функция от първи род Jn(x) (цилиндрична функция).
BESSELJ(X; N)
X е стойността, за която се изчислява функцията.
N е положително цяло число (N >= 0), представящо порядъка на Беселовата функция Jn(x).
=BESSELJ(3,45; 4) връща 0,196772639864984
=BESSELJ(3,45; 4,333) връща 0,196772639864984, също като по-горе, защото дробната част на N се игнорира.
=BESSELJ(-1; 3) връща -0,019563353982668
Изчислява модифицираната Беселова функция от втори род Kn(x).
BESSELK(X; N)
X е строго положителната стойност (X > 0), за която се изчислява функцията.
N е положително цяло число (N >= 0), представящо порядъка на Беселовата функция Kn(x).
=BESSELK(3,45; 4) връща 0,144803466373734
=BESSELK(3,45; 4,333) връща 0,144803466373734, също като по-горе, защото дробната част на N се игнорира.
=BESSELK(0; 3) връща Err:502 – невалиден аргумент (X=0)
Изчислява Беселовата функция от втори род Yn(x).
BESSELY(X; N)
X е строго положителната стойност (X > 0), за която се изчислява функцията.
N е положително цяло число (N >= 0), представящо порядъка на Беселовата функция 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(Число [; Разреди])
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.
Пресмята стойностите на Гаусовия интеграл на грешките.
ERF(ДолнаГраница [; ГорнаГраница])
ДолнаГраница е долната граница на интеграла.
ГорнаГраница е не задължителен. Той указва горната граница на интеграла. Ако е пропуснат, изчислението се извършва между 0 и долната граница.
=ERF(0;1) връща 0,842701.
Връща допълнителните стойности на Гаусовия интеграл на грешките между x и безкрайност.
ERFC(ДолнаГраница)
ДолнаГраница е долната граница на интеграла.
=ERFC(1) връща 0,157299.
Връща допълнителните стойности на Гаусовия интеграл на грешките между x и безкрайност.
ERFC.PRECISE(ДолнаГраница)
ДолнаГраница е долната граница на интеграла.
=ERFC.PRECISE(1) връща 0,157299.
COM.MICROSOFT.ERFC.PRECISE
Пресмята стойностите на Гаусовия интеграл на грешките между 0 и дадената граница.
ERF.PRECISE(ДолнаГраница)
ДолнаГраница е границата на интеграла. Изчислението се извършва между 0 и тази граница.
=ERF.PRECISE(1) връща 0,842701.
COM.MICROSOFT.ERF.PRECISE
Резултатът е 1, ако аргументът Число е по-голям или равен на Стъпка.
GESTEP(Число [; Стъпка])
=GESTEP(5;1) връща 1.
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".