Visible to Intel only — GUID: GUID-02DD8A94-8A08-4F64-9E98-AFB5F769C472
Visible to Intel only — GUID: GUID-02DD8A94-8A08-4F64-9E98-AFB5F769C472
IEEE_MIN_NUM_MAG
Inquiry Module Intrinsic Function (Generic): Returns the numeric minimum magnitude of two values. This is equivalent to the IEEE minimumMagnitudeNumber operation.
Module
USE, INTRINSIC :: IEEE_ARITHMETIC
result = IEEE_MIN_NUM_MAG (x,y)
x |
(Input) Must be of type REAL. |
y |
(Input) Must be of type REAL with the same kind type parameter as x. |
Results
The result type is REAL with the same kind type parameter as x. The result is y if ABS(y) < ABS(x). The result is the value of x if ABS(x) < ABS(y). Otherwise, the result is the same as IEEE_MIN_NUM (x, y).
If either or both of the arguments is a signaling NaN, the exception IEEE_INVALID is signaled. Unless both arguments are signaling NaNs, the signaling NaN is otherwise ignored and not converted to a quiet NaN. No other exceptions are signaled.
This is the minimumMagnitudeNumber operation as specified in the ISO/IEC 60559:2020 standard.
Example
The result value of IEEE_MIN_NUM_MAG (3.7, -7.5) is 3.7.