Quad.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 Quad FusedMultiplyAdd(
	Quad left,
	Quad right,
	Quad addend
)

Parameters

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

Return Value

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

Implements

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

See Also