MinD function

Warning

This documentation refers to the Classic QDK, which has been replaced by the Modern QDK.

Please see https://aka.ms/qdk.api for the API documentation for the Modern QDK.

Namespace: Microsoft.Quantum.Math

Package: Microsoft.Quantum.QSharp.Foundation

Returns the smaller of two specified numbers.

function MinD (a : Double, b : Double) : Double

Input

a : Double

The first number to be compared.

b : Double

The second number to be compared.

Output : Double

The smaller of a and b.

Example

let min = MinD(3.14, 2.71);  // 2.71

See Also