Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TCplx Min(TCplx X, TCplx Y) | Minimum of two numbers. |
| 2 | TSCplx Min(TSCplx X, TSCplx Y) | |
| 3 | Double Min(Double X, Double Y) | Minimum of two real numbers X and Y. |
| 4 | Double Min(Double X, Int32 Y) | |
| 5 | Double Min(Int32 X, Double Y) | |
| 6 | Int32 Min(Int32 X, Int32 Y) | Minimum of two integer numbers X and Y. |
| 7 | Int64 Min(Int32 X, Int64 Y) | |
| 8 | Int64 Min(Int64 X, Int32 Y) | |
| 9 | Int64 Min(Int64 X, Int64 Y) | Minimum of two 64bit integer numbers X and Y. |
| 10 | Single Min(Single X, Single Y) | |
| 11 | Single Minf(Single X, Single Y) |
Overload 1: TCplx Min(TCplx X, TCplx Y)
Minimum of two numbers.
Returns: TCplx (complex) - the minimum of two complex numbers X and Y.
Remarks:
Complex numbers are first compared by the absolute value. If they are equal they are further compared by the unwrapped phase -PI,PI angle.
Overload 2: TSCplx Min(TSCplx X, TSCplx Y)
Overload 3: Double Min(Double X, Double Y)
Minimum of two real numbers X and Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
| 2 | Y | Double | scalar |
Returns: Double - the minimum of two real numbers X and Y.
Overload 4: Double Min(Double X, Int32 Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Double | scalar |
| 2 | Y | Int32 |
Returns: Double
Overload 5: Double Min(Int32 X, Double Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int32 | |
| 2 | Y | Double | scalar |
Returns: Double
Overload 6: Int32 Min(Int32 X, Int32 Y)
Minimum of two integer numbers X and Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int32 | |
| 2 | Y | Int32 |
Returns: Int32 - the minimum of two integer numbers X and Y.
See Also: Math387.Max
Overload 7: Int64 Min(Int32 X, Int64 Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int32 | |
| 2 | Y | Int64 |
Returns: Int64
Overload 8: Int64 Min(Int64 X, Int32 Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int64 | |
| 2 | Y | Int32 |
Returns: Int64
Overload 9: Int64 Min(Int64 X, Int64 Y)
Minimum of two 64bit integer numbers X and Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int64 | |
| 2 | Y | Int64 |
Returns: Int64 - the minimum of two 64bit integer numbers X and Y.
See Also: Math387.Max
Overload 10: Single Min(Single X, Single Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
| 2 | Y | Single | scalar |
Returns: Single
Overload 11: Single Minf(Single X, Single Y)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Single | scalar |
| 2 | Y | Single | scalar |
Returns: Single