Add-in Functions, List of Analysis Functions Part Two

note

The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.


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

삽입 - 함수 - 범주 Add-In


[text/scalc/01/func_imcos.xhp#imcos_head not found].

Returns the cosine of a complex number.

[text/scalc/01/func_imcosh.xhp#imcosh_head not found].

Returns the hyperbolic cosine of a complex number.

[text/scalc/01/func_imcot.xhp#imcot_head not found].

Returns the cotangent of a complex number.

[text/scalc/01/func_imcsc.xhp#imcsc_head not found].

Returns the cosecant of a complex number.

[text/scalc/01/func_imcsch.xhp#imcsch_head not found].

Returns the hyperbolic cosecant of a complex number.

[text/scalc/01/func_imsec.xhp#imsec_head not found].

Returns the secant of a complex number.

[text/scalc/01/func_imsech.xhp#imsech_head not found].

Returns the hyperbolic secant of a complex number.

[text/scalc/01/func_imsin.xhp#imsin_head not found].

Returns the sine of a complex number.

[text/scalc/01/func_imsinh.xhp#imsinh_head not found].

Returns the hyperbolic sine of a complex number.

[text/scalc/01/func_imtan.xhp#imtan_head not found].

Returns the tangent of a complex number.

CONVERT

Converts a value from one unit of measurement to the corresponding value in another unit of measurement.

COMPLEX

지정된 실수부와 허수부를 사용하여 만든 복소수가 반환됩니다.

Syntax

COMPLEX(RealNum; INum [; Suffix])

RealNum는 복소수의 실계수입니다.

INum는 복소수의 허수 부분의 계수입니다.

Suffix는 "i" 나 "j" 등의 선택 목록입니다.

Example

=COMPLEX(3;4;"j")는 3+4j를 반환합니다.

FACTDOUBLE

숫자에 대한 이중 계승값을 구합니다.

Syntax

TWOFACTS(Number)

0 이상의 정수인 숫자의 더블 팩토리얼(!!)숫자를 반환합니다.

숫자가 짝수인 경우 FACTDOUBLE(n)은 다음을 반환합니다.

2*4*6*8* ... *n

숫자가 홀수인 경우 FACTDOUBLE(n)은 다음을 반환합니다.

1*3*5*7* ... *n

FACTDOUBLE(0)은 정의에 따라 1을 반환합니다.

Example

=FACTDOUBLE(5)는 15를 반환합니다.

=FACTDOUBLE(6)은 48을 반환합니다.

=FACTDOUBLE(0)은 1을 반환합니다.

IMABS

결과는 복소수의 절대값입니다.

Syntax

IMABS("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMABS("5+12j")는 13을 반환합니다.

IMAGINARY

결과는 복소수의 허수입니다.

Syntax

IMAGINARY("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMAGINARY("4+3j")는 3을 반환합니다.

IMARGUMENT

결과는 복소수의 인수(파이 각)입니다.

Syntax

IMARGUMENT("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMARGUMENT("3+4j")는 0.927295를 반환합니다.

IMCONJUGATE

복소수의 공액 복소수가 반환됩니다.

Syntax

IMCONJUGATE("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMCONJUGATE("1+j")는 1-j를 반환합니다.

IMDIV

결과는 두 복소수의 나눗셈입니다.

Syntax

IMDIV("분자"; "분모")

분자, 분모는 "x+yi" 나 "x+yj" 의 형태로 입력되는 복소수입니다.

Example

=IMDIV("-238+240i";"10+24i")는 5+12i를 반환합니다.

IMEXP

결과는 e 및 복소수의 곱입니다. 상수 e의 값은 약 2.71828182845904입니다.

Syntax

IMEXP("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMEXP("1+j") 는 1.47+2.29j를 반환합니다(반올림됨).

IMLN

결과는 복소수의 밑수 e)에 대한 자연 로그입니다. 상수 e의 값은 약 2.71828182845904입니다.

Syntax

IMLN("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMLN("1+j")는 0.35+0.79j를 반환합니다(반올림됨).

IMLOG10

결과는 복소수의 밑수 10에 대한 상용 로그입니다.

Syntax

IMLOG10("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMLOG10("1+j")는 0.15+0.34j를 반환합니다(반올림됨).

IMLOG2

결과는 복소수의 이진 로그입니다.

Syntax

IMLOG2("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMLOG2("1+j")는 0.50+1.13j를 반환합니다(반올림됨).

IMPOWER

The result is the ComplexNumber raised to the power of Number.

Syntax

IMPOWER("ComplexNumber"; Number)

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Number는 지수입니다.

Example

=IMPOWER("2+3i";2)는 -5+12i를 반환합니다.

IMPRODUCT

The result is the product of a set of complex numbers.

Syntax

IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])

Complex 1, Complex 2, … ,Complex 255 are complex numbers, references to cells or to cell ranges of complex numbers. Complex numbers are entered in the form "x+yi" or "x+yj".

Example

=IMPRODUCT("3+4j";"5-3j")는 27+11j를 반환합니다.

IMREAL

결과는 복소수의 실수부가 반환됩니다.

Syntax

IMREAL("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMREAL("1+3j")은 1을 반환합니다.

IMSQRT

결과는 복소수의 제곱근이 반환됩니다.

Syntax

IMSQRT("ComplexNumber")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMSQRT("3+4i")는 2+1i를 반환합니다.

IMSUB

결과는 두 복소수의 뺄셈입니다.

Syntax

IMSUB("ComplexNumber1"; "ComplexNumber2")

ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.

Example

=IMSUB("13+4j";"5+3j")는 8+j를 반환합니다.

IMSUM

The result is the sum of a set of complex numbers.

Syntax

IMSUM(Complex 1 [; Complex 2 [; … [; Complex 255]]])

Complex 1, Complex 2, … ,Complex 255 are complex numbers, references to cells or to cell ranges of complex numbers. Complex numbers are entered in the form "x+yi" or "x+yj".

Example

=IMSUM("13+4j";"5+3j")는 18+7j를 반환합니다.

OCT2BIN

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

Syntax

OCT2BIN(Number [; Places])

Number is a string that represents an octal 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는 출력될 자릿수입니다.

Example

=OCT2BIN("3";3) returns "011".

OCT2DEC

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

Syntax

OCTTODEC(Number)

Number is a string that represents an octal 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.

Example

=OCT2DEC("144") returns 100.

OCT2HEX

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

Syntax

OCT2HEX(Number [; Places])

Number is a string that represents an octal 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는 출력될 자릿수입니다.

Example

=OCT2HEX("144";4) returns "0064".

Please support us!