Table of Contents

Method Multiply

Namespace
Zyl.VectorTraits.Impl.AVector
Assembly
VectorTraits.dll

Multiply(Vector<double>, Vector<double>)

Multiplies two vectors to compute their element-wise product (将两个向量相乘来计算它们各元素的积). Mnemonic: rt[i] := left[i] * right[i].

public static Vector<double> Multiply(Vector<double> left, Vector<double> right)

Parameters

left Vector<double>

The vector to multiply with right (将会与right进行相乘的向量).

right Vector<double>

The vector to add with left (将会与left进行相加的向量).

Returns

Vector<double>

The element-wise product of left and right (leftright的各元素乘积).

See Also