LibreOffice 7.4 Hjelp
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.
Returns the double factorial of a number.
FACTDOUBLE(Number)
Returns Number !!, the double factorial of Number, where Number is an integer greater than or equal to zero.
For even numbers FACTDOUBLE(n) returns:
2*4*6*8* ... *n
For odd numbers FACTDOUBLE(n) returns:
1*3*5*7* ... *n
=FAKULTET(0) gir per definisjon 1.
=USANN() gir USANN
=USANN() gir USANN
=IKKE(USANN()) gir SANN
Resultatet er absoluttverdien av et komplekst tall.
IMCOS("Komplekst_tall")
ComplexNumber is a complex number that is entered in the form "x+yi" or "x+yj".
=RADER(A10:B12) gir 3.
Resultatet er imaginære delen av et komplekst tall.
IMSIN("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er argumentet (phi-vinkelen) til et komplekst tall.
IMREELL("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er divideringa av to komplekse tall.
IMDIV("Teller"; "Nevner")
Numerator, Denominator are complex numbers that are entered in the form "x+yi" or "x+yj".
=RADER(A10:B12) gir 3.
Returnerer potensen av e og komplekse talletl. Konstanten e har den tilnærmede verdi 2,71828182845904.
IMEKSP("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er den konjugerte komplekse delen av et komplekst tall.
IMKONJUGERE("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er den naturlige logaritmen (med grundtallet e) av et komplekst tall. Konstanten e har den tilnærmede verdi 2,71828182845904.
IMLN("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er titallslogaritmen til et komplekst tall.
IMLOG10("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er den binære logaritmen til et komplekst tall.
IMLOG2("Komplekst_tall")
=RADER(A10:B12) gir 3.
The result is the ComplexNumber raised to the power of Number.
IMPOWER("ComplexNumber"; Number)
Number is the exponent.
=RADER(A10:B12) gir 3.
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=RADER(A10:B12) gir 3.
Resultatet er realdelen av et komplekst tall.
IMREELL("Komplekst_tall")
=RADER(A10:B12) gir 3.
Resultatet er kvadratrota av et komplekst tall.
IMROT("Komplekst_tall")
=ELLER(A; B) gir SANN
Resultatet er differansen mellom to komplekse tall.
IMSUB("Komplekst_tall_1"; "Komplekst_tall_2")
=RADER(A10:B12) gir 3.
The result is the sum of a set of complex numbers.
IMSUM(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=RADER(A10:B12) gir 3.
Resultatet er et komplekst tall som er gitt av en realdel og en imaginær del.
COMPLEX(RealNum; INum [; Suffix])
RealNum is the real coefficient of the complex number.
INum is the imaginary coefficient of the complex number.
Suffix is a list of options, "i" or "j".
=RADER(A10:B12) gir 3.
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 is the number of places to be output.
=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 is the number of places to be output.
=OCT2HEX("144";4) returns "0064".