Quad.Fused Multiply Add Method
Computes the fused multiply-add of three values.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The result of left times right plus addend computed as one ternary operation.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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
QuadThe result of left times right plus addend computed as one ternary operation.