ComplexOperations
Table of Contents
| IMDIV() | IMDIV. | string |
|---|---|---|
| IMSUB() | IMSUB. | string |
| IMSUM() | IMSUM. | string |
| IMPRODUCT() | IMPRODUCT. | string |
Methods
IMDIV()
IMDIV.
public
static IMDIV(
$complexDividend :
string
, $complexDivisor :
string
)
: string
Returns the quotient of two complex numbers in x + yi or x + yj text format.
Excel Function: IMDIV(complexDividend,complexDivisor)
Parameters
- $complexDividend : string
the complex numerator or dividend
- $complexDivisor : string
the complex denominator or divisor
Return values
stringIMSUB()
IMSUB.
public
static IMSUB(
$complexNumber1 :
string
, $complexNumber2 :
string
)
: string
Returns the difference of two complex numbers in x + yi or x + yj text format.
Excel Function: IMSUB(complexNumber1,complexNumber2)
Parameters
- $complexNumber1 : string
the complex number from which to subtract complexNumber2
- $complexNumber2 : string
the complex number to subtract from complexNumber1
Return values
stringIMSUM()
IMSUM.
public
static IMSUM(
...$complexNumbers :
string
)
: string
Returns the sum of two or more complex numbers in x + yi or x + yj text format.
Excel Function: IMSUM(complexNumber[,complexNumber[,...]])
Parameters
- $complexNumbers : string
Series of complex numbers to add
Return values
stringIMPRODUCT()
IMPRODUCT.
public
static IMPRODUCT(
...$complexNumbers :
string
)
: string
Returns the product of two or more complex numbers in x + yi or x + yj text format.
Excel Function: IMPRODUCT(complexNumber[,complexNumber[,...]])
Parameters
- $complexNumbers : string
Series of complex numbers to multiply