Vector<T>.Division Operátor
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
Division(Vector<T>, Vector<T>) |
Vydělí první vektor sekundou. |
Division(Vector<T>, T) |
Vydělí vektor skalárem pro výpočet podílu jednotlivých prvků. |
Division(Vector<T>, Vector<T>)
- Zdroj:
- Vector_1.cs
- Zdroj:
- Vector_1.cs
- Zdroj:
- Vector_1.cs
Vydělí první vektor sekundou.
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>
První vektor.
- right
- Vector<T>
Druhý vektor.
Návraty
Vektor, který je výsledkem dělení left
pomocí right
.
Výjimky
.NET 5 a novější: Typ T
se nepodporuje.
Poznámky
Metoda Division definuje operaci dělení pro Vector<T> objekty.
Platí pro
Division(Vector<T>, T)
- Zdroj:
- Vector_1.cs
- Zdroj:
- Vector_1.cs
Vydělí vektor skalárem pro výpočet podílu jednotlivých prvků.
public:
static System::Numerics::Vector<T> operator /(System::Numerics::Vector<T> left, T right);
public static System.Numerics.Vector<T> operator / (System.Numerics.Vector<T> left, T right);
static member ( / ) : System.Numerics.Vector<'T> * 'T -> System.Numerics.Vector<'T>
Public Shared Operator / (left As Vector(Of T), right As T) As Vector(Of T)
Parametry
- left
- Vector<T>
Vektor, který bude dělený pomocí right
.
- right
- T
Skalární, který rozdělí left
.
Návraty
Podíl left
děleno pomocí right
.