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。
得出一個數的雙階乘。
FACTDOUBLE(number)
傳回 Number !!,此為 Number 的雙階乘,其中 Number 是大於或等於零的整數。
若是偶數,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。
結果為複數的引數 (phi 角度)。
IMARGUMENT("ComplexNumber")
=IMARGUMENT("3+4j") 傳回 0.927295。
結果為一個複數的共軛補數。
IMCONJUGATE("ComplexNumber")
=IMCONJUGATE("1+j") 傳回 1-j。
結果為兩個複數的除法。
IMDIV("Numerator"; "Denominator")
Numerator、Denominator 是以格式「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.
OCT2DEC(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".