Single.MultiplyAddEstimate(Single, Single, Single) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
計算 (left
* right
) + addend
的估計值。
public:
static float MultiplyAddEstimate(float left, float right, float addend) = System::Numerics::INumberBase<float>::MultiplyAddEstimate;
public static float MultiplyAddEstimate (float left, float right, float addend);
static member MultiplyAddEstimate : single * single * single -> single
Public Shared Function MultiplyAddEstimate (left As Single, right As Single, addend As Single) As Single
參數
- left
- Single
要乘以 right
的值。
- right
- Single
要乘以 left
的值。
- addend
- Single
要加入至 left
結果的值乘以 right
。
傳回
估計 (left
* right
) + addend
。