Vector.MultiplyAddEstimate Метод

Определение

Перегрузки

Имя Описание
MultiplyAddEstimate(Vector<Double>, Vector<Double>, Vector<Double>)

Вычисляет оценку (left * right) + . addend

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

Вычисляет оценку (left * right) + . addend

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

Исходный код:
Vector.cs
Исходный код:
Vector.cs
Исходный код:
Vector.cs

Вычисляет оценку (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)

Параметры

left
Vector<Double>

Вектор для умножения right.

right
Vector<Double>

Вектор для умножения left.

addend
Vector<Double>

Вектор, добавляемый в результат left умножения rightна .

Возвращаемое значение

Оценка (left * right) + . addend

Применяется к

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

Исходный код:
Vector.cs
Исходный код:
Vector.cs
Исходный код:
Vector.cs

Вычисляет оценку (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)

Параметры

left
Vector<Single>

Вектор для умножения right.

right
Vector<Single>

Вектор для умножения left.

addend
Vector<Single>

Вектор, добавляемый в результат left умножения rightна .

Возвращаемое значение

Оценка (left * right) + . addend

Применяется к