Collabora Office 23.05 帮助
The Add-in functions are supplied by the UNO com.sun.star.sheet.addin.Analysis service.
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(数字)
返回「数字 !!」,即「数字」的双阶乘,其中「数字」是大于或等于 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("复数")
复数 是一个以 "x+yi" 或 "x+yj" 形式输入的复数。
「=IMABS("5+12j")」返回 13。
结果是一个复数的虚系数。
IMAGINARY("复数")
「=IMAGINARY("4+3j")」返回 3。
结果为复数的幅度 (phi 角度)。
IMARGUMENT("复数")
「=IMARGUMENT("3+4j")」返回 0.927295。
结果是一个复数的共轭复数。
IMCONJUGATE("复数")
「=IMCONJUGATE("1+j")」返回 1-j。
结果是两个复数的商。
IMDIV("分子"; "分母")
「分子 与 分母」是以「x+yi」或「x+yj」形式输入的复数。
「=IMDIV("-238+240i";"10+24i")」返回 5+12i。
结果是 e 的幂和复数。常数 e 的值约为 2.71828182845904。
IMEXP("复数")
「=IMEXP("1+j")」返回 1.47+2.29j (舍入值)。
结果是复数以 e 为底的自然对数。常数 e 的值约为 2.71828182845904。
IMLN("复数")
「=IMLN("1+j")」返回 0.35+0.79j (舍入值)。
结果是一个复数的常用对数 (以 10 为底)。
IMLOG10("复数")
「=IMLOG10("1+j")」返回 0.15+0.34j (舍入值)。
结果为复数的二进制对数。
IMLOG2("复数")
「=IMLOG2("1+j")」返回 0.50+1.13j (舍入值)。
返回「复数」的「数字」次幂。
IMPOWER("复数"; 数字)
「数字」是「指数」。
「=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("复数")
「=IMREAL("1+3j")」返回 1。
计算一个复数的平方根。
IMSQRT("复数")
「=IMSQRT("3+4i")」返回 2+1i。
结果是两个复数的差。
IMSUB("复数1"; "复数2")
「=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 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".