Vector.Divide Metoda
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í
Divide<T>(Vector<T>, T) |
Vydělí vektor skalárem pro výpočet podílu jednotlivých prvků. |
Divide<T>(Vector<T>, Vector<T>) |
Vrátí nový vektor, jehož hodnoty jsou výsledkem dělení prvků prvního vektoru odpovídajícími prvky ve druhém vektoru. |
Divide<T>(Vector<T>, T)
- Zdroj:
- Vector.cs
- Zdroj:
- Vector.cs
Vydělí vektor skalárem pro výpočet podílu jednotlivých prvků.
public:
generic <typename T>
static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, T right);
public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, T right);
static member Divide : System.Numerics.Vector<'T> * 'T -> System.Numerics.Vector<'T>
Public Function Divide(Of T) (left As Vector(Of T), right As T) As Vector(Of T)
Parametry typu
- T
Typ prvků ve vektoru.
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
.
Platí pro
Divide<T>(Vector<T>, Vector<T>)
- Zdroj:
- Vector.cs
- Zdroj:
- Vector.cs
- Zdroj:
- Vector.cs
Vrátí nový vektor, jehož hodnoty jsou výsledkem dělení prvků prvního vektoru odpovídajícími prvky ve druhém vektoru.
public:
generic <typename T>
where T : value class static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public:
generic <typename T>
static System::Numerics::Vector<T> Divide(System::Numerics::Vector<T> left, System::Numerics::Vector<T> right);
public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right) where T : struct;
public static System.Numerics.Vector<T> Divide<T> (System.Numerics.Vector<T> left, System.Numerics.Vector<T> right);
static member Divide : System.Numerics.Vector<'T (requires 'T : struct)> * System.Numerics.Vector<'T (requires 'T : struct)> -> System.Numerics.Vector<'T (requires 'T : struct)> (requires 'T : struct)
static member Divide : System.Numerics.Vector<'T> * System.Numerics.Vector<'T> -> System.Numerics.Vector<'T>
Public Shared Function Divide(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
Public Function Divide(Of T As Structure) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
Public Function Divide(Of T) (left As Vector(Of T), right As Vector(Of T)) As Vector(Of T)
Parametry typu
- T
Typ vektoru. T
může být libovolný primitivní číselný typ.
Parametry
- left
- Vector<T>
První vektor.
- right
- Vector<T>
Druhý vektor.
Návraty
Dělený vektor.