ILNumerics.Net - numeric computing for .NET
Operator dividing a real by a complex.

Namespace:  ILNumerics
Assembly:  ILNumerics.Net (in ILNumerics.Net.dll)
Version: 1.3.12.0 (0.9.28.0)

Syntax

C#
public static complex operator /(
	ushort in1,
	complex in2
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	in1 As UShort, _
	in2 As complex _
) As complex
Visual C++
public:
static complex operator /(
	unsigned short in1, 
	complex in2
)

Parameters

in1
Type: System..::.UInt16
The dividend.
in2
Type: ILNumerics..::.complex
The divisor.

Return Value

Result of operation in1 / in2

See Also