LibreOffice 25.2 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.
Vraća dupli faktorijal broja.
FAKTDUPLI(Broj)
Vraća Broj!!, dupli faktorijal od Broj, gdje Broj je cijeli broj veći ili jednak nuli.
Za parne brojeve FACTDOUBLE(n) vraća:
2 * 4 * 6 * 8 * ... * (n - 2) * n
Za neparne brojeve FACTDOUBLE(n) vraća:
1 * 3 * 5 * 7 * ... * (n - 2) * n
FACTDOUBLE(0) vraća jedan po definiciji.
=FACTDOUBLE(5) vraća 15.
=FACTDOUBLE(6) vraća 48.
=FACTDOUBLE(6) vraća 1.
Rezultat je apsolutna vrijednost kompleksnog broja.
IMABS("Kompleksni_broj")
Kompleksni_Broj je kompleksni broj unesen u formi "x+yi" or "x+yj".
=IMABS("5+12j") vraca 13.
Rezultat je imaginarni koeficijent kompleksnog broja.
IMAGINARNO("Kompleksni_broj")
=IMAGINARY("4+3j") vraca 3.
Rezultat je argument (the phi kut) kompleksnog broja.
IMARGUMENT("Kompleksni_broj")
=IMARGUMENT("3+4j") vraca 0.927295.
Rezultat je spojeni kompleksni komplement k kompleksnom broju.
IMCONJUGATE("Kompleksni_broj")
=IMCONJUGATE("1+j") vraca 1-j.
Rezultat je dijeljenje dva kompleksnog broja.
IMDIV("Kompleksni_brojnik"; "Kompleksni_nazivnik")
Brojnik, Nazivnik su kompleksni brojevi uneseni u formi "x + yi" or "x + yj"
=IMDIV("-238+240i"; "10+24i") vraca 5+12i.
Rezultat je jakost od e i kompleksni broj. Konstantni e ima vrijednost oko 2.71828182845904.
IMEXP("Kompleksni_broj")
=IMEXP("1+j") vraca 1.47+2.29j (zaobljen).
Rezultat je prirodni logaritam (baza e) od kompleksnog broja. Konstantni e ima vrijednost oko 2.71828182845904.
IMLN("Kompleksni_broj")
=IMLN("1+j") vraca 0.35+0.79j (zaobljen).
Rezultat je zajednicki logaritam (baza 10) kompleksnog broja.
IMLOG10("Kompleksni_broj")
=IMLOG10("1+j") vraca 0.15+0.34j (zaobljen).
Rezultat je binarni logaritam kompleksnog broja.
IMLOG2("Kompleksni_broj")
=IMLOG2("1+j") vraca 0.50+1.13j (zaobljen).
The result is the ComplexNumber raised to the power of Number.
IMPOWER("Kompleksni_broj"; Broj)
Broj je eksponent.
=IMPOWER("2+3i"; 2) vraca -5+12i.
The result is the product of a set of complex numbers.
IMPRODUCT(Complex 1 [; Complex 2 [; … [; Complex 255]]])
=IMPRODUKT("3+4j"; "5-3j") vraca 27+11j.
Rezultat je realni koeficijent kompleksnog broja.
IMREAL("Kompleksni_broj")
=IMREAL("1+3j") vraca 1.
Rezultat je drugi korijen kompleksnog broja.
IMSQRT("Kompleksni_broj")
=IMSQRT("3+4i") vraca 2+1i.
Rezultat je oduzimanje dva kompleksnog broja.
IMSUB("Kompleksni_broj_1"; "Kompleksni_broj_2")
=IMSUB("13+4j"; "5+3j") vraca 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") vraca 18+7j.
Rezultat je kompleksni broj vraceni sa realnog keoficijenta i imaginarnog koeficijenta.
COMPLEX(RealNum; INum [; Suffix])
Real_num je realni koeficijent kompleksnog broja.
Imag_num je imaginarni koeficijent kompleksnog broja.
Sufiks je lista opcijai, "i" ili "j".
=KOMPLEKS(3; 4; "j") vraca 3+4j.
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.
Mjesta je broj mjesta koji ce biti izlazni.
=OCT2BIN("3";3) returns "011".
The result is the number for the octal number string entered.
OCT2DEC(Broj)
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.
Mjesta je broj mjesta koji ce biti izlazni.
=OCT2HEX("144";4) returns "0064".