BigFloat.FusedMultiplyAdd Method

Computes the fused multiply-add of three values.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static BigFloat FusedMultiplyAdd(
	BigFloat left,
	BigFloat right,
	BigFloat addend
)

Parameters

left  BigFloat
The value which right multiplies.
right  BigFloat
The value which multiplies left.
addend  BigFloat
The value that is added to the product of left and right.

Return Value

BigFloat
The result of left times right plus addend computed as one ternary operation.

Implements

IFloatingPointIeee754<TSelf>.FusedMultiplyAdd(TSelf, TSelf, TSelf)

See Also