|
ToolsMin Method
|
Gets the minimum value among three values.
Namespace:
Accord.Math
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static double Min(
double a,
double b,
double c
)
Public Shared Function Min (
a As Double,
b As Double,
c As Double
) As Double
Request Example
View SourceParameters
- a
- Type: SystemDouble
The first value a. - b
- Type: SystemDouble
The second value b. - c
- Type: SystemDouble
The third value c.
Return Value
Type:
DoubleThe minimum value among
a,
b and
c.
See Also