AbsD 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 absolute value of a double-precision floating-point number.

function AbsD (a : Double) : Double

Input

a : Double

The number whose absolute value is to be returned.

Output : Double

The absolute value of a.

Example

Message($"{AbsD(3.14)}");   // 3.14
Message($"{AbsD(-2.71)}");  // 2.71

See Also