編輯

共用方式為


Vector.MultiplyAddEstimate Method

Definition

Overloads

Name Description
MultiplyAddEstimate(Vector<Double>, Vector<Double>, Vector<Double>)

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

MultiplyAddEstimate(Vector<Single>, Vector<Single>, Vector<Single>)

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

MultiplyAddEstimate(Vector<Double>, Vector<Double>, Vector<Double>)

Source:
Vector.cs

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

public:
 static System::Numerics::Vector<double> MultiplyAddEstimate(System::Numerics::Vector<double> left, System::Numerics::Vector<double> right, System::Numerics::Vector<double> addend);
public static System.Numerics.Vector<double> MultiplyAddEstimate(System.Numerics.Vector<double> left, System.Numerics.Vector<double> right, System.Numerics.Vector<double> addend);
static member MultiplyAddEstimate : System.Numerics.Vector<double> * System.Numerics.Vector<double> * System.Numerics.Vector<double> -> System.Numerics.Vector<double>
Public Function MultiplyAddEstimate (left As Vector(Of Double), right As Vector(Of Double), addend As Vector(Of Double)) As Vector(Of Double)

Parameters

left
Vector<Double>

The vector to be multiplied with right.

right
Vector<Double>

The vector to be multiplied with left.

addend
Vector<Double>

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

Returns

An estimate of (left * right) + addend.

Applies to

MultiplyAddEstimate(Vector<Single>, Vector<Single>, Vector<Single>)

Source:
Vector.cs

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

public:
 static System::Numerics::Vector<float> MultiplyAddEstimate(System::Numerics::Vector<float> left, System::Numerics::Vector<float> right, System::Numerics::Vector<float> addend);
public static System.Numerics.Vector<float> MultiplyAddEstimate(System.Numerics.Vector<float> left, System.Numerics.Vector<float> right, System.Numerics.Vector<float> addend);
static member MultiplyAddEstimate : System.Numerics.Vector<single> * System.Numerics.Vector<single> * System.Numerics.Vector<single> -> System.Numerics.Vector<single>
Public Function MultiplyAddEstimate (left As Vector(Of Single), right As Vector(Of Single), addend As Vector(Of Single)) As Vector(Of Single)

Parameters

left
Vector<Single>

The vector to be multiplied with right.

right
Vector<Single>

The vector to be multiplied with left.

addend
Vector<Single>

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

Returns

An estimate of (left * right) + addend.

Applies to