LibreOffice 24.8 ヘルプ
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 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 は、複素数の虚数係数です。
接尾辞 は、オプション、「i」または「j」のリストです。
=COMPLEX(3;4;"j") は、3+4j を返します。
数値の二重階乗を返します。
FACTDOUBLE(数値)
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("複素数")
複素数 は、「x+yi」または「x+yj」の形式で入力される複素数です。
=IMABS("5+12j") は、13 を返します。
複素数の虚数係数を返します。
IMAGINARY("複素数")
=IMAGINARY("4+3j") は、3 を返します。
複素数の引数 (偏角) を返します。
IMARGUMENT("複素数")
=IMARGUMENT("3+4j") は、0.927295 を返します。
複素数の複素共役を返します。
IMCONJUGATE("複素数")
=IMCONJUGATE("1+j") は、1-j を返します。
2 つの複素数の商を返します。
IMDIV("分子"; "分母")
分子、分母 は、「x+yi」または「x+yj」で入力される複素数です。
=IMDIV("-238+240i";"10+24i") は、5+12i を返します。
複素数のべき乗 (オイラー数) を返します。定数 e の値は約 2.71828182845904 です。
IMEXP("複素数")
=IMEXP("1+j") は、丸められた 1.47+2.29j を返します。
複素数の自然対数を返します。定数 e の値は約 2.71828182845904 です。
IMLN("複素数")
=IMLN("1+j") は、丸められた 0.35+0.79j を返します。
複素数の常用対数(基数 10 に対する)を返します。
IMLOG10("複素数")
=IMLOG10("1+j") は、丸められた 0.15+0.34j を返します。
複素数の 2 を底とする対数を返します。
IMLOG2("複素数")
=IMLOG2("1+j") は、丸められた 0.50+1.13j を返します。
The result is the ComplexNumber raised to the power of Number.
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 を返します。
2 つの複素数の差を返します。
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.
桁数 は、出力される桁数です。
=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.
桁数 は、出力される桁数です。
=OCT2HEX("144";4) returns "0064".