Collabora Office 24.04 Help
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
Returns the cosine of a complex number.
Returns the hyperbolic cosine of a complex number.
Returns the cotangent of a complex number.
Returns the cosecant of a complex number.
Returns the hyperbolic cosecant of a complex number.
Returns the secant of a complex number.
Returns the hyperbolic secant of a complex number.
Returns the sine of a complex number.
Returns the hyperbolic sine of a complex number.
Returns the tangent of a complex number.
Converts a value from one unit of measurement to the corresponding value in another unit of measurement.
지정된 실수부와 허수부를 사용하여 만든 복소수가 반환됩니다.
COMPLEX(RealNum; INum [; Suffix])
RealNum는 복소수의 실계수입니다.
INum는 복소수의 허수 부분의 계수입니다.
Suffix는 "i" 나 "j" 등의 선택 목록입니다.
=COMPLEX(3;4;"j")는 3+4j를 반환합니다.
숫자에 대한 이중 계승값을 구합니다.
TWOFACTS(Number)
0 이상의 정수인 숫자의 더블 팩토리얼(!!)인 숫자를 반환합니다.
숫자가 짝수인 경우 FACTDOUBLE(n)은 다음을 반환합니다.
2*4*6*8* ... *n
숫자가 홀수인 경우 FACTDOUBLE(n)은 다음을 반환합니다.
1*3*5*7* ... *n
FACTDOUBLE(0)은 정의에 따라 1을 반환합니다.
=FACTDOUBLE(5)는 15를 반환합니다.
=FACTDOUBLE(6)은 48을 반환합니다.
=FACTDOUBLE(0)은 1을 반환합니다.
결과는 복소수의 절대값입니다.
IMABS("ComplexNumber")
ComplexNumber는 "x+yi" 또는 "x+yj" 형식으로 입력된 복소수입니다.
=IMABS("5+12j")는 13을 반환합니다.
결과는 복소수의 허수입니다.
IMAGINARY("ComplexNumber")
=IMAGINARY("4+3j")는 3을 반환합니다.
결과는 복소수의 인수(파이 각)입니다.
IMARGUMENT("ComplexNumber")
=IMARGUMENT("3+4j")는 0.927295를 반환합니다.
복소수의 공액 복소수가 반환됩니다.
IMCONJUGATE("ComplexNumber")
=IMCONJUGATE("1+j")는 1-j를 반환합니다.
결과는 두 복소수의 나눗셈입니다.
IMDIV("분자"; "분모")
분자, 분모는 "x+yi" 나 "x+yj" 의 형태로 입력되는 복소수입니다.
=IMDIV("-238+240i";"10+24i")는 5+12i를 반환합니다.
결과는 e 및 복소수의 곱입니다. 상수 e의 값은 약 2.71828182845904입니다.
IMEXP("ComplexNumber")
=IMEXP("1+j") 는 1.47+2.29j를 반환합니다(반올림됨).
결과는 복소수의 밑수 e)에 대한 자연 로그입니다. 상수 e의 값은 약 2.71828182845904입니다.
IMLN("ComplexNumber")
=IMLN("1+j")는 0.35+0.79j를 반환합니다(반올림됨).
결과는 복소수의 밑수 10에 대한 상용 로그입니다.
IMLOG10("ComplexNumber")
=IMLOG10("1+j")는 0.15+0.34j를 반환합니다(반올림됨).
결과는 복소수의 이진 로그입니다.
IMLOG2("ComplexNumber")
=IMLOG2("1+j")는 0.50+1.13j를 반환합니다(반올림됨).
The result is the ComplexNumber raised to the power of Number.
IMPOWER("ComplexNumber"; Number)
Number는 지수입니다.
=IMPOWER("2+3i";2)는 -5+12i를 반환합니다.
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=IMPRODUCT("3+4j";"5-3j")는 27+11j를 반환합니다.
결과는 복소수의 실수부가 반환됩니다.
IMREAL("ComplexNumber")
=IMREAL("1+3j")은 1을 반환합니다.
결과는 복소수의 제곱근이 반환됩니다.
IMSQRT("ComplexNumber")
=IMSQRT("3+4i")는 2+1i를 반환합니다.
결과는 두 복소수의 뺄셈입니다.
IMSUB("ComplexNumber1"; "ComplexNumber2")
=IMSUB("13+4j";"5+3j")는 8+j를 반환합니다.
The result is the sum of a set of complex numbers.
IMSUM(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=IMSUM("13+4j";"5+3j")는 18+7j를 반환합니다.
The result is the string representing the number in binary (base-2) form for the octal number string entered.
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는 출력될 자릿수입니다.
=OCT2BIN("3";3) returns "011".
The result is the number for the octal number string entered.
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.
=OCT2DEC("144") returns 100.
The result is the string representing the number in hexadecimal form for the octal number string entered.
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는 출력될 자릿수입니다.
=OCT2HEX("144";4) returns "0064".