Table of Contents

Method Multiply

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

Multiply(Vector512<float>, Vector512<float>)

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

public static Vector512<float> Multiply(Vector512<float> left, Vector512<float> right)

Parameters

left Vector512<float>

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

right Vector512<float>

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

Returns

Vector512<float>

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

See Also

Multiply(Vector512<double>, Vector512<double>)

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

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

Parameters

left Vector512<double>

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

right Vector512<double>

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

Returns

Vector512<double>

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

See Also

Multiply(Vector512<sbyte>, Vector512<sbyte>)

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

[CLSCompliant(false)]
public static Vector512<sbyte> Multiply(Vector512<sbyte> left, Vector512<sbyte> right)

Parameters

left Vector512<sbyte>

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

right Vector512<sbyte>

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

Returns

Vector512<sbyte>

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

See Also

Multiply(Vector512<byte>, Vector512<byte>)

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

public static Vector512<byte> Multiply(Vector512<byte> left, Vector512<byte> right)

Parameters

left Vector512<byte>

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

right Vector512<byte>

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

Returns

Vector512<byte>

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

See Also

Multiply(Vector512<short>, Vector512<short>)

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

public static Vector512<short> Multiply(Vector512<short> left, Vector512<short> right)

Parameters

left Vector512<short>

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

right Vector512<short>

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

Returns

Vector512<short>

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

See Also

Multiply(Vector512<ushort>, Vector512<ushort>)

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

[CLSCompliant(false)]
public static Vector512<ushort> Multiply(Vector512<ushort> left, Vector512<ushort> right)

Parameters

left Vector512<ushort>

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

right Vector512<ushort>

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

Returns

Vector512<ushort>

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

See Also

Multiply(Vector512<int>, Vector512<int>)

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

public static Vector512<int> Multiply(Vector512<int> left, Vector512<int> right)

Parameters

left Vector512<int>

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

right Vector512<int>

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

Returns

Vector512<int>

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

See Also

Multiply(Vector512<uint>, Vector512<uint>)

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

[CLSCompliant(false)]
public static Vector512<uint> Multiply(Vector512<uint> left, Vector512<uint> right)

Parameters

left Vector512<uint>

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

right Vector512<uint>

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

Returns

Vector512<uint>

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

See Also

Multiply(Vector512<long>, Vector512<long>)

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

public static Vector512<long> Multiply(Vector512<long> left, Vector512<long> right)

Parameters

left Vector512<long>

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

right Vector512<long>

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

Returns

Vector512<long>

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

See Also

Multiply(Vector512<ulong>, Vector512<ulong>)

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

[CLSCompliant(false)]
public static Vector512<ulong> Multiply(Vector512<ulong> left, Vector512<ulong> right)

Parameters

left Vector512<ulong>

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

right Vector512<ulong>

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

Returns

Vector512<ulong>

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

See Also