Deconstructs a complex number into its real and complex parts.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public void Deconstruct(
out T real,
out T imaginary
)
Public Sub Deconstruct (
<OutAttribute> ByRef real As T,
<OutAttribute> ByRef imaginary As T
)
public:
void Deconstruct(
[OutAttribute] T% real,
[OutAttribute] T% imaginary
)
member Deconstruct :
real : 'T byref *
imaginary : 'T byref -> unit
Parameters
- real
- Type: T
The real part. - imaginary
- Type: T
The imaginary part.
Reference