Complex.INumberBase<Complex>.MultiplyAddEstimate 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 an estimate of (left * right) + addend.
 static System::Numerics::Complex System.Numerics.INumberBase<System.Numerics.Complex>.MultiplyAddEstimate(System::Numerics::Complex left, System::Numerics::Complex right, System::Numerics::Complex addend) = System::Numerics::INumberBase<System::Numerics::Complex>::MultiplyAddEstimate;
	static System.Numerics.Complex INumberBase<Complex>.MultiplyAddEstimate(System.Numerics.Complex left, System.Numerics.Complex right, System.Numerics.Complex addend);
	static member System.Numerics.INumberBase<System.Numerics.Complex>.MultiplyAddEstimate : System.Numerics.Complex * System.Numerics.Complex * System.Numerics.Complex -> System.Numerics.Complex
	 Shared Function MultiplyAddEstimate (left As Complex, right As Complex, addend As Complex) As Complex Implements INumberBase(Of Complex).MultiplyAddEstimate
	Parameters
- left
 - Complex
 
The value to be multiplied with right.
- right
 - Complex
 
The value to be multiplied with left.
- addend
 - Complex
 
The value to be added to the result of left multiplied by right.
Returns
An estimate of (left * right) + addend.