IFloatingPointIeee754<TSelf>.FusedMultiplyAdd 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 TSelf FusedMultiplyAdd(TSelf left, TSelf right, TSelf addend);
public static abstract TSelf FusedMultiplyAdd (TSelf left, TSelf right, TSelf addend);
static member FusedMultiplyAdd : 'Self * 'Self * 'Self -> 'Self
Public Shared Function FusedMultiplyAdd (left As TSelf, right As TSelf, addend As TSelf) As TSelf
Parameters
- left
- TSelf
The value which right
multiplies.
- right
- TSelf
The value which multiplies left
.
- addend
- TSelf
The value that is added to the product of left
and right
.
Returns
TSelf
The result of left
times right
plus addend
computed as one ternary operation.
Applies to
Werk met ons samen op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en bekijken. Raadpleeg onze gids voor inzenders voor meer informatie.