Vector.NarrowWithSaturation Metod

Definition

Överlagringar

Name Description
NarrowWithSaturation(Vector<Double>, Vector<Double>)

Begränsar två instansvektorer Double till en vektor Single för att använda en mättad konvertering.

NarrowWithSaturation(Vector<Int16>, Vector<Int16>)

Begränsar två instansvektorer Int16 till en vektor SByte för att använda en mättad konvertering.

NarrowWithSaturation(Vector<Int32>, Vector<Int32>)

Begränsar två instansvektorer Int32 till en vektor Int16 för att använda en mättad konvertering.

NarrowWithSaturation(Vector<Int64>, Vector<Int64>)

Begränsar två instansvektorer Int64 till en vektor Int32 för att använda en mättad konvertering.

NarrowWithSaturation(Vector<UInt16>, Vector<UInt16>)

Begränsar två instansvektorer UInt16 till en vektor Byte för att använda en mättad konvertering.

NarrowWithSaturation(Vector<UInt32>, Vector<UInt32>)

Begränsar två instansvektorer UInt32 till en vektor UInt16 för att använda en mättad konvertering.

NarrowWithSaturation(Vector<UInt64>, Vector<UInt64>)

Begränsar två instansvektorer UInt64 till en vektor UInt32 för att använda en mättad konvertering.

NarrowWithSaturation(Vector<Double>, Vector<Double>)

Källa:
Vector.cs
Källa:
Vector.cs

Begränsar två instansvektorer Double till en vektor Single för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<float> NarrowWithSaturation(System::Numerics::Vector<double> low, System::Numerics::Vector<double> high);
public static System.Numerics.Vector<float> NarrowWithSaturation(System.Numerics.Vector<double> low, System.Numerics.Vector<double> high);
static member NarrowWithSaturation : System.Numerics.Vector<double> * System.Numerics.Vector<double> -> System.Numerics.Vector<single>
Public Function NarrowWithSaturation (low As Vector(Of Double), high As Vector(Of Double)) As Vector(Of Single)

Parametrar

low
Vector<Double>
high
Vector<Double>

Returer

En vektor med Single innehållande element som är begränsade med mättnad från lower och upper.

Gäller för

NarrowWithSaturation(Vector<Int16>, Vector<Int16>)

Källa:
Vector.cs
Källa:
Vector.cs

Viktigt!

Detta API uppfyller inte CLS.

Begränsar två instansvektorer Int16 till en vektor SByte för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<System::SByte> NarrowWithSaturation(System::Numerics::Vector<short> low, System::Numerics::Vector<short> high);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<sbyte> NarrowWithSaturation(System.Numerics.Vector<short> low, System.Numerics.Vector<short> high);
[<System.CLSCompliant(false)>]
static member NarrowWithSaturation : System.Numerics.Vector<int16> * System.Numerics.Vector<int16> -> System.Numerics.Vector<sbyte>
Public Function NarrowWithSaturation (low As Vector(Of Short), high As Vector(Of Short)) As Vector(Of SByte)

Parametrar

low
Vector<Int16>
high
Vector<Int16>

Returer

En vektor med SByte innehållande element som är begränsade med mättnad från lower och upper.

Attribut

Gäller för

NarrowWithSaturation(Vector<Int32>, Vector<Int32>)

Källa:
Vector.cs
Källa:
Vector.cs

Begränsar två instansvektorer Int32 till en vektor Int16 för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<short> NarrowWithSaturation(System::Numerics::Vector<int> low, System::Numerics::Vector<int> high);
public static System.Numerics.Vector<short> NarrowWithSaturation(System.Numerics.Vector<int> low, System.Numerics.Vector<int> high);
static member NarrowWithSaturation : System.Numerics.Vector<int> * System.Numerics.Vector<int> -> System.Numerics.Vector<int16>
Public Function NarrowWithSaturation (low As Vector(Of Integer), high As Vector(Of Integer)) As Vector(Of Short)

Parametrar

low
Vector<Int32>
high
Vector<Int32>

Returer

En vektor med Int16 innehållande element som är begränsade med mättnad från lower och upper.

Gäller för

NarrowWithSaturation(Vector<Int64>, Vector<Int64>)

Källa:
Vector.cs
Källa:
Vector.cs

Begränsar två instansvektorer Int64 till en vektor Int32 för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<int> NarrowWithSaturation(System::Numerics::Vector<long> low, System::Numerics::Vector<long> high);
public static System.Numerics.Vector<int> NarrowWithSaturation(System.Numerics.Vector<long> low, System.Numerics.Vector<long> high);
static member NarrowWithSaturation : System.Numerics.Vector<int64> * System.Numerics.Vector<int64> -> System.Numerics.Vector<int>
Public Function NarrowWithSaturation (low As Vector(Of Long), high As Vector(Of Long)) As Vector(Of Integer)

Parametrar

low
Vector<Int64>
high
Vector<Int64>

Returer

En vektor med Int32 innehållande element som är begränsade med mättnad från lower och upper.

Gäller för

NarrowWithSaturation(Vector<UInt16>, Vector<UInt16>)

Källa:
Vector.cs
Källa:
Vector.cs

Viktigt!

Detta API uppfyller inte CLS.

Begränsar två instansvektorer UInt16 till en vektor Byte för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<System::Byte> NarrowWithSaturation(System::Numerics::Vector<System::UInt16> low, System::Numerics::Vector<System::UInt16> high);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<byte> NarrowWithSaturation(System.Numerics.Vector<ushort> low, System.Numerics.Vector<ushort> high);
[<System.CLSCompliant(false)>]
static member NarrowWithSaturation : System.Numerics.Vector<uint16> * System.Numerics.Vector<uint16> -> System.Numerics.Vector<byte>
Public Function NarrowWithSaturation (low As Vector(Of UShort), high As Vector(Of UShort)) As Vector(Of Byte)

Parametrar

low
Vector<UInt16>
high
Vector<UInt16>

Returer

En vektor med Byte innehållande element som är begränsade med mättnad från lower och upper.

Attribut

Gäller för

NarrowWithSaturation(Vector<UInt32>, Vector<UInt32>)

Källa:
Vector.cs
Källa:
Vector.cs

Viktigt!

Detta API uppfyller inte CLS.

Begränsar två instansvektorer UInt32 till en vektor UInt16 för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<System::UInt16> NarrowWithSaturation(System::Numerics::Vector<System::UInt32> low, System::Numerics::Vector<System::UInt32> high);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<ushort> NarrowWithSaturation(System.Numerics.Vector<uint> low, System.Numerics.Vector<uint> high);
[<System.CLSCompliant(false)>]
static member NarrowWithSaturation : System.Numerics.Vector<uint32> * System.Numerics.Vector<uint32> -> System.Numerics.Vector<uint16>
Public Function NarrowWithSaturation (low As Vector(Of UInteger), high As Vector(Of UInteger)) As Vector(Of UShort)

Parametrar

low
Vector<UInt32>
high
Vector<UInt32>

Returer

En vektor med UInt16 innehållande element som är begränsade med mättnad från lower och upper.

Attribut

Gäller för

NarrowWithSaturation(Vector<UInt64>, Vector<UInt64>)

Källa:
Vector.cs
Källa:
Vector.cs

Viktigt!

Detta API uppfyller inte CLS.

Begränsar två instansvektorer UInt64 till en vektor UInt32 för att använda en mättad konvertering.

public:
 static System::Numerics::Vector<System::UInt32> NarrowWithSaturation(System::Numerics::Vector<System::UInt64> low, System::Numerics::Vector<System::UInt64> high);
[System.CLSCompliant(false)]
public static System.Numerics.Vector<uint> NarrowWithSaturation(System.Numerics.Vector<ulong> low, System.Numerics.Vector<ulong> high);
[<System.CLSCompliant(false)>]
static member NarrowWithSaturation : System.Numerics.Vector<uint64> * System.Numerics.Vector<uint64> -> System.Numerics.Vector<uint32>
Public Function NarrowWithSaturation (low As Vector(Of ULong), high As Vector(Of ULong)) As Vector(Of UInteger)

Parametrar

low
Vector<UInt64>
high
Vector<UInt64>

Returer

En vektor med UInt32 innehållande element som är begränsade med mättnad från lower och upper.

Attribut

Gäller för