Difference between revisions of "Documentation/How Tos/Calc: IMDIV function"
From Apache OpenOffice Wiki
< Documentation | How Tos
Javier Lopez (talk | contribs) |
|||
Line 61: | Line 61: | ||
* This function currently appears in the AddIn category of the Function Wizard. | * This function currently appears in the AddIn category of the Function Wizard. | ||
− | {{ | + | {{SeeAlso|EN| |
* [[Documentation/How_Tos/Calc: IMPRODUCT function|IMPRODUCT]] | * [[Documentation/How_Tos/Calc: IMPRODUCT function|IMPRODUCT]] | ||
* [[Documentation/How_Tos/Calc: IMSUM function|IMSUM]] | * [[Documentation/How_Tos/Calc: IMSUM function|IMSUM]] |
Revision as of 08:10, 17 July 2018
IMDIV
Returns the result of dividing one complex number by another.
This function is only available if the Analysis AddIn is installed.
Syntax:
IMDIV(complexnum1; complexnum2)
- complexnum1 and complexnum2 are text representing complex numbers, for example as a+bi or a+bj.
- IMDIV returns complexnum1/complexnum2 as text.
Example:
IMDIV("9+8i"; "1+2i")
- returns 5-2i as text.
Issues:
- This function currently appears in the AddIn category of the Function Wizard.
See Also