Add-in Functions, List of Analysis Functions Part One

이 명령을 사용하려면...

삽입 - 함수 - 범주 Add-In


BESSELI

Calculates the modified Bessel function of the first kind In(x).

구문

BESSELI(X; N)

X는 함수가 계산될 값입니다.

N is a positive integer (N >= 0) representing the order of the Bessel function In(x)

Examples

=BESSELI(3.45, 4), returns 0.651416873060081

=BESSELI(3.45, 4.333), returns 0.651416873060081, same as above because the fractional part of N is ignored.

=BESSELI(-1, 3), returns -0.022168424924332

BESSELJ

Calculates the Bessel function of the first kind Jn(x) (cylinder function).

구문

BESSELJ(X; N)

X는 함수가 계산될 값입니다.

N is a positive integer (N >= 0) representing the order of the Bessel function Jn(x)

Examples

=BESSELJ(3.45, 4), returns 0.196772639864984

=BESSELJ(3.45, 4.333), returns 0.196772639864984, same as above because the fractional part of N is ignored.

=BESSELJ(-1, 3), returns -0.019563353982668

BESSELK

Calculates the modified Bessel function of the second kind Kn(x).

구문

BESSELK(X; N)

X is the strictly positive value (X > 0) on which the function will be calculated.

N is a positive integer (N >= 0) representing the order of the Bessel function Kn(x)

Examples

=BESSELK(3.45, 4), returns 0.144803466373734

=BESSELK(3.45, 4.333), returns 0.144803466373734, same as above because the fractional part of N is ignored.

=BESSELK(0, 3), returns Err:502 – invalid argument (X=0)

BESSELY

Calculates the Bessel function of the second kind Yn(x).

구문

BESSELY(X; N)

X is the strictly positive value (X > 0) on which the function will be calculated.

N is a positive integer (N >= 0) representing the order of the Bessel function Yn(x)

Examples

=BESSELY(3.45, 4), returns -0.679848116844476

=BESSELY(3.45, 4.333), returns -0.679848116844476, same as above because the fractional part of N is ignored.

=BESSELY(0, 3), returns Err:502 – invalid argument (X=0)

BIN2DEC

입력한 2진수 값을 10진수로 계산하여 반환합니다.

구문

BIN2DEC(Number)

Number는 이진수 수로 최대 10 비트가 될 수 있습니다. 의미있는 비트는 부호비트로 음수인 경우 2의 보수로 입력됩니다.

=BIN2DEC(1100100)은 100을 반환합니다.

BIN2HEX

입력한 2진수 값을 16진수로 계산하여 반환합니다.

구문

BIN2HEX(수; 자리)

Number는 이진수 수로 최대 10 비트가 될 수 있습니다. 의미있는 비트는 부호비트로 음수인 경우 2의 보수로 입력됩니다.

자리는 출력될 수의 자리수입니다.

=BIN2HEX(1100100;6)는 000064를 반환합니다.

BIN2OCT

입력한 2진수 값을 8진수로 계산하여 반환합니다.

구문

BIN2OCT(수;자리)

Number는 이진수 수로 최대 10 비트가 될 수 있습니다. 의미있는 비트는 부호비트로 음수인 경우 2의 보수로 입력됩니다.

Places는 출력될 자리수의 수입니다.

=BIN2OCT(1100100;4)는 0144를 반환합니다.

DEC2BIN

입력한 -512 및 511 사이의 10진수 값을 2진수로 계산하여 반환합니다.

구문

DEC2BIN(수;자리)

Number는 10진수 수입니다. 음수인 경우에는 함수는 10 개 문자의 2진수 수를 반환합니다. 여기서 의미 있는 비트는 부호비트이며, 나머지 9개 비트는 값을 반환합니다.

Places는 출력될 자리수의 수입니다.

=DEC2BIN(100;8)은 01100100을 반환합니다.

DEC2HEX

입력한 10진수 값을 16진수로 계산하여 반환합니다.

구문

DEC2HEX(수;자리)

Number는 10진수 수입니다. 음수일 경우 함수는 10개 문자(40비트)로 된 16진수를 반환합니다. 가장 의미있는 비트는 부호 비트이며, 나머지 39개 값을 반환합니다.

Places는 출력될 자리수의 수입니다.

=DEC2HEX(100;4)은 0064를 반환합니다.

DEC2OCT

입력한 10진수 값을 8진수로 계산하여 반환합니다.

구문

DECTOOCT(수;자리)

Number는 10진수 수입니다. 음수인 경우에는 함수는 10 개 문자(30비트)의 8진수 수를 반환합니다. 여기서 의미 있는 비트는 부호비트이며, 나머지 29개 비트는 값을 반환합니다.

Places는 출력될 자리수의 수입니다.

=DEC2OCT(100;4)는 0144를 반환합니다.

DELTA

인수로 제공된 두 숫자가 동일하면 결과는 TRUE(1)이고 그렇지 않으면 FALSE(0)입니다.

구문

DELTA(수1; 수2)

=DELTA(1;2)는 0를 반환합니다.

ERF

가우스 오류 정수의 값을 구합니다.

구문

ERF(하한; 상한)

하한은 적분의 하한값입니다.

상한값은 선택사항으로 적분의 상한값을 의미합니다. 이 값을 비워두면, 0과 하한값 사이의 값에 대해 계산을 하게 됩니다.

=ERF(0;1)는 0.842701을 반환합니다.

ERF.PRECISE

Returns values of the Gaussian error integral between 0 and the given limit.

구문

ERF.PRECISE(LowerLimit)

LowerLimit is the limit of the integral. The calculation takes places between 0 and this limit.

=ERF.PRECISE(1) returns 0.842701.

ERFC

x와 무한대 사이에서 가우스 오류 정수의 보완 값을 구합니다.

구문

ERFC(하한값)

하한은 적분의 하한값입니다.

=ERFC(1)는 0.157299를 반환합니다.

ERFC.PRECISE

Returns complementary values of the Gaussian error integral between x and infinity.

구문

ERFC.PRECISE(LowerLimit)

하한은 적분의 하한값입니다.

=ERFC.PRECISE(1) returns 0.157299.

GESTEP

단계보다 크거나 같으면 결과값은 1입니다.

구문

GESTEP(수; 임계값)

=GESTEP(5;1)는 1을 반환합니다.

HEX2BIN

입력한 16진수 값을 2진수로 계산하여 반환합니다.

구문

HEX2BIN(수;자리)

Number is a hexadecimal number or 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.

Places는 출력될 자릿수입니다.

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

HEX2DEC

입력한 16진수 값을 10진수로 계산하여 반환합니다.

구문

HEX2DEC(Number)

Number is a hexadecimal number or 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") returns 106.

HEX2OCT

입력한 16진수 값을 8진수로 계산하여 반환합니다.

구문

HEX2OCT(수;자리)

Number is a hexadecimal number or 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.

Places는 출력될 자릿수입니다.

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