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
Colaborați cu noi pe GitHub
Sursa pentru acest conținut poate fi găsită pe GitHub, unde puteți, de asemenea, să creați și să consultați probleme și solicitări de tragere. Pentru mai multe informații, consultați ghidul nostru pentru colaboratori.