Constructs a complex number from polar elements.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static Complex<T> FromPolar(
T modulus,
T argument
)
Public Shared Function FromPolar (
modulus As T,
argument As T
) As Complex(Of T)
public:
static Complex<T> FromPolar(
T modulus,
T argument
)
static member FromPolar :
modulus : 'T *
argument : 'T -> Complex<'T>
Parameters
- modulus
- Type: T
The modulus of the complex number. - argument
- Type: T
The argument of the complex number.
Return Value
Type:
ComplexTThe complex with the specified modulus and argument.
This method requires that the operand type supports real arithmetic.
Numerical Libraries
Supported in: 6.0, 5.x
Reference