Version

Min(Complex,Complex) Method

Compares x1 to x2 and returns the smallest one.
Syntax
'Declaration
 
Public Overloads Shared Function Min( _
   ByVal x1 As Complex, _
   ByVal x2 As Complex _
) As Complex
public static Complex Min( 
   Complex x1,
   Complex x2
)

Parameters

x1
The first Complex number.
x2
The second Complex number.

Return Value

x1 if the magnitude of x1 is smaller than the magnitude of x2. y if the magnitude of x2 is smaller than the magntiude of x1. x1 if x1 and x2 have the same magnitude, and the phase of x1 is greater than the phase of x2. x2 otherwise.
Remarks
Complex numbers have no intrinsic ordering. Therefore the Min function is not unique.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also