Edit

Share via


Math.FusedMultiplyAdd(Double, Double, Double) Method

Definition

Returns (x * y) + z, rounded as one ternary operation.

C#
public static double FusedMultiplyAdd(double x, double y, double z);

Parameters

x
Double

The number to be multiplied with y.

y
Double

The number to be multiplied with x.

z
Double

The number to be added to the result of x multiplied by y.

Returns

(x * y) + z, rounded as one ternary operation.

Remarks

This computes (x * y) as if to infinite precision, adds z to that result as if to infinite precision, and finally rounds to the nearest representable value.

This differs from the non-fused sequence which would compute (x * y) as if to infinite precision, round the result to the nearest representable value, add z to the rounded result as if to infinite precision, and finally round to the nearest representable value.

Applies to

Product Versions
.NET Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10