Bearbeiten

Teilen über


NFloat.MultiplyAddEstimate(NFloat, NFloat, NFloat) Method

Definition

Computes an estimate of (left * right) + addend.

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

Parameters

left
NFloat

The value to be multiplied with right.

right
NFloat

The value to be multiplied with left.

addend
NFloat

The value to be added to the result of left multiplied by right.

Returns

An estimate of (left * right) + addend.

Implements

Applies to