MathNMaxTNumeric Method
Returns the larger of two numbers.
Namespace: Jodosoft.NumericsAssembly: Jodosoft.Numerics (in Jodosoft.Numerics.dll) Version: 2.0
public static TNumeric Max<TNumeric>(
TNumeric x,
TNumeric y
)
where TNumeric : struct, new(), INumeric<TNumeric>
Public Shared Function Max(Of TNumeric As {Structure, New, INumeric(Of TNumeric)}) (
x As TNumeric,
y As TNumeric
) As TNumeric
public:
generic<typename TNumeric>
where TNumeric : value class, gcnew(), INumeric<TNumeric>
static TNumeric Max(
TNumeric x,
TNumeric y
)
static member Max :
x : 'TNumeric *
y : 'TNumeric -> 'TNumeric when 'TNumeric : struct, new() and INumeric<'TNumeric>
- x TNumeric
-
- y TNumeric
-
- TNumeric
TNumericParameter
val1 or
val2, whichever is larger.
This method may return
NaN or Infinity.
If
NaN or Infinity cannot be represented by
TNumeric,
then this method may throw an
ArithmeticException.