Vector<T>.Multiply Operator

Definicja

Przeciążenia

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

Zwraca nowy wektor, którego wartości są iloczynem każdej pary elementów w dwóch określonych wektorach.

Multiply(Vector<T>, T)

Mnoży wektor przez określoną wartość skalarną.

Multiply(T, Vector<T>)

Mnoży wektor przez określoną wartość skalarną.

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

Źródło:
Vector_1.cs
Źródło:
Vector_1.cs
Źródło:
Vector_1.cs

Zwraca nowy wektor, którego wartości są iloczynem każdej pary elementów w dwóch określonych wektorach.

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)

Parametry

left
Vector<T>

Pierwszy wektor.

right
Vector<T>

Drugi wektor.

Zwraca

Wektor produktu mądry elementami.

Wyjątki

.NET 5 i nowsze: typ T nie jest obsługiwany.

Uwagi

Metoda Multiply definiuje operację mnożenia dla Vector<T> obiektów.

Dotyczy

Multiply(Vector<T>, T)

Źródło:
Vector_1.cs
Źródło:
Vector_1.cs
Źródło:
Vector_1.cs

Mnoży wektor przez określoną wartość skalarną.

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)

Parametry

value
Vector<T>

Wektor źródłowy.

factor
T

Wartość skalarna.

Zwraca

Wektor skalowany.

Wyjątki

.NET 5 i nowsze: typ T nie jest obsługiwany.

Uwagi

Metoda Multiply definiuje operację mnożenia dla Vector<T> obiektów.

Dotyczy

Multiply(T, Vector<T>)

Źródło:
Vector_1.cs
Źródło:
Vector_1.cs
Źródło:
Vector_1.cs

Mnoży wektor przez określoną wartość skalarną.

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)

Parametry

factor
T

Wartość skalarna.

value
Vector<T>

Wektor źródłowy.

Zwraca

Wektor skalowany.

Wyjątki

.NET 5 i nowsze: typ T nie jest obsługiwany.

Uwagi

Metoda Multiply definiuje operację mnożenia dla Vector<T> obiektów.

Dotyczy