NFloat.MultiplyAddEstimate(NFloat, NFloat, NFloat) 方法

定义

计算 (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

参数

left
NFloat

要与 right相乘的值。

right
NFloat

要与 left相乘的值。

addend
NFloat

要添加到 left 结果的值乘以 right

返回

估计 (left * right) + addend

实现

适用于