NFloat.FusedMultiplyAdd(NFloat, NFloat, NFloat) Method

Definition

Computes the fused multiply-add of three values.

public:
 static System::Runtime::InteropServices::NFloat FusedMultiplyAdd(System::Runtime::InteropServices::NFloat left, System::Runtime::InteropServices::NFloat right, System::Runtime::InteropServices::NFloat addend) = System::Numerics::IFloatingPointIeee754<System::Runtime::InteropServices::NFloat>::FusedMultiplyAdd;
public static System.Runtime.InteropServices.NFloat FusedMultiplyAdd (System.Runtime.InteropServices.NFloat left, System.Runtime.InteropServices.NFloat right, System.Runtime.InteropServices.NFloat addend);
static member FusedMultiplyAdd : System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat * System.Runtime.InteropServices.NFloat -> System.Runtime.InteropServices.NFloat
Public Shared Function FusedMultiplyAdd (left As NFloat, right As NFloat, addend As NFloat) As NFloat

Parameters

left
NFloat

The value that right multiplies.

right
NFloat

The value that multiplies left.

addend
NFloat

The value that is added to the product of left and right.

Returns

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

Implements

Applies to