NFloat.FusedMultiplyAdd(NFloat, NFloat, NFloat) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.