Vector<T>.Multiply 演算子

定義

オーバーロード

Multiply(Vector<T>, Vector<T>)

指定した 2 つのベクトルの要素の各ペアを乗算した値を値とする新しいベクトルを返します。

Multiply(Vector<T>, T)

ベクトルを、指定したスカラー値で乗算します。

Multiply(T, Vector<T>)

ベクトルを、指定したスカラー値で乗算します。

Multiply(Vector<T>, Vector<T>)

ソース:
Vector_1.cs
ソース:
Vector_1.cs
ソース:
Vector_1.cs

指定した 2 つのベクトルの要素の各ペアを乗算した値を値とする新しいベクトルを返します。

public:
 static System::Numerics::Vector<T> operator *(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> operator * (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member ( * ) : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( * ) : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator * (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)

パラメーター

left
Vector<T>

最初のベクトル。

right
Vector<T>

2 番目のベクトル。

戻り値

要素ごとの積ベクトル。

例外

.NET 5 以降: 型 T はサポートされていません。

注釈

メソッドは Multiply 、オブジェクトの乗算演算を Vector<T> 定義します。

適用対象

Multiply(Vector<T>, T)

ソース:
Vector_1.cs
ソース:
Vector_1.cs
ソース:
Vector_1.cs

ベクトルを、指定したスカラー値で乗算します。

public:
 static System::Numerics::Vector<T> operator *(System::Numerics::Vector<T> value, T factor);
public static System.Numerics.Vector<T> operator * (System.Numerics.Vector<T> value, T factor);
static member ( * ) : System.Numerics.Vector<'T (requires 'T : struct)> * 'T -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( * ) : System.Numerics.Vector<'T> * 'T -> System.Numerics.Vector<'T>
Public Shared Operator * (value As Vector(Of T), factor As T) As Vector(Of T)

パラメーター

value
Vector<T>

ソース ベクトル。

factor
T

スカラー値。

戻り値

スケール調節されたベクトル。

例外

.NET 5 以降: 型 T はサポートされていません。

注釈

メソッドは Multiply 、オブジェクトの乗算演算を Vector<T> 定義します。

適用対象

Multiply(T, Vector<T>)

ソース:
Vector_1.cs
ソース:
Vector_1.cs
ソース:
Vector_1.cs

ベクトルを、指定したスカラー値で乗算します。

public:
 static System::Numerics::Vector<T> operator *(T factor, System::Numerics::Vector<T> value);
public static System.Numerics.Vector<T> operator * (T factor, System.Numerics.Vector<T> value);
static member ( * ) : 'T * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)>
static member ( * ) : 'T * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Operator * (factor As T, value As Vector(Of T)) As Vector(Of T)

パラメーター

factor
T

スカラー値。

value
Vector<T>

ソース ベクトル。

戻り値

スケール調節されたベクトル。

例外

.NET 5 以降: 型 T はサポートされていません。

注釈

メソッドは Multiply 、オブジェクトの乗算演算を Vector<T> 定義します。

適用対象