Vector.NarrowWithSaturation Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
| Имя | Описание |
|---|---|
| NarrowWithSaturation(Vector<Double>, Vector<Double>) |
Сужает два вектора Double экземпляров в один вектор Single использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<Int16>, Vector<Int16>) |
Сужает два вектора Int16 экземпляров в один вектор SByte использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<Int32>, Vector<Int32>) |
Сужает два вектора Int32 экземпляров в один вектор Int16 использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<Int64>, Vector<Int64>) |
Сужает два вектора Int64 экземпляров в один вектор Int32 использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<UInt16>, Vector<UInt16>) |
Сужает два вектора UInt16 экземпляров в один вектор Byte использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<UInt32>, Vector<UInt32>) |
Сужает два вектора UInt32 экземпляров в один вектор UInt16 использования насыщенного преобразования. |
| NarrowWithSaturation(Vector<UInt64>, Vector<UInt64>) |
Сужает два вектора UInt64 экземпляров в один вектор UInt32 использования насыщенного преобразования. |
NarrowWithSaturation(Vector<Double>, Vector<Double>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
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)
Параметры
Возвращаемое значение
Вектор Single , содержащий элементы, сужаемые с насыщенностью и lowerupper.
Применяется к
NarrowWithSaturation(Vector<Int16>, Vector<Int16>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
Важно!
Этот API несовместим с CLS.
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)
Параметры
Возвращаемое значение
Вектор SByte , содержащий элементы, сужаемые с насыщенностью и lowerupper.
- Атрибуты
Применяется к
NarrowWithSaturation(Vector<Int32>, Vector<Int32>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
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)
Параметры
Возвращаемое значение
Вектор Int16 , содержащий элементы, сужаемые с насыщенностью и lowerupper.
Применяется к
NarrowWithSaturation(Vector<Int64>, Vector<Int64>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
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)
Параметры
Возвращаемое значение
Вектор Int32 , содержащий элементы, сужаемые с насыщенностью и lowerupper.
Применяется к
NarrowWithSaturation(Vector<UInt16>, Vector<UInt16>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
Важно!
Этот API несовместим с CLS.
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)
Параметры
Возвращаемое значение
Вектор Byte , содержащий элементы, сужаемые с насыщенностью и lowerupper.
- Атрибуты
Применяется к
NarrowWithSaturation(Vector<UInt32>, Vector<UInt32>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
Важно!
Этот API несовместим с CLS.
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)
Параметры
Возвращаемое значение
Вектор UInt16 , содержащий элементы, сужаемые с насыщенностью и lowerupper.
- Атрибуты
Применяется к
NarrowWithSaturation(Vector<UInt64>, Vector<UInt64>)
- Исходный код:
- Vector.cs
- Исходный код:
- Vector.cs
Важно!
Этот API несовместим с CLS.
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)
Параметры
Возвращаемое значение
Вектор UInt32 , содержащий элементы, сужаемые с насыщенностью и lowerupper.
- Атрибуты