Single.FusedMultiplyAdd(Single, Single, Single) 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 float FusedMultiplyAdd(float left, float right, float addend) = System::Numerics::IFloatingPointIeee754<float>::FusedMultiplyAdd;
public static float FusedMultiplyAdd (float left, float right, float addend);
static member FusedMultiplyAdd : single * single * single -> single
Public Shared Function FusedMultiplyAdd (left As Single, right As Single, addend As Single) As Single
Parameters
- left
- Single
The value which right
multiplies.
- right
- Single
The value which multiplies left
.
- addend
- Single
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
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.