Tensor.Min メソッド

定義

オーバーロード

Min<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

指定したテンソル内の数値の要素ごとの最小値を計算します。

Min<T>(ReadOnlyTensorSpan<T>, T)

指定したテンソル内の数値の要素ごとの最小値を計算します。

Min<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

指定したテンソル内の数値の要素ごとの最小値を計算します。

Min<T>(ReadOnlyTensorSpan<T>)

指定したテンソル内の最小数を検索します。

Min<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

指定したテンソル内の数値の要素ごとの最小値を計算します。

Min<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>, TensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソル内の数値の要素ごとの最小値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ Min(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Min<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.INumber<T>;
static member Min : ReadOnlyTensorSpan * ReadOnlyTensorSpan * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function Min(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T), ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlyTensorSpan<T>

スパンとして表される 2 番目のテンソル。

destination
TensorSpan<T>

スパンとして表される宛先テンソル。

戻り値

適用対象

Min<T>(ReadOnlyTensorSpan<T>, T)

ソース:
TensorExtensions.cs

指定したテンソル内の数値の要素ごとの最小値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::Tensor<T> ^ Min(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static System.Numerics.Tensors.Tensor<T> Min<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.INumber<T>;
static member Min : ReadOnlyTensorSpan * 'T -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.INumber<'T>)> (requires 'T :> System.Numerics.INumber<'T>)
Public Function Min(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Tensor(Of T)

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
T

スパンとして表される 2 番目のテンソル。

戻り値

適用対象

Min<T>(ReadOnlyTensorSpan<T>, T, TensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソル内の数値の要素ごとの最小値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::TensorSpan<T> ^ Min(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y, System::Numerics::Tensors::TensorSpan<T> % destination);
public static ref readonly System.Numerics.Tensors.TensorSpan<T> Min<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y, in System.Numerics.Tensors.TensorSpan<T> destination) where T : System.Numerics.INumber<T>;
static member Min : ReadOnlyTensorSpan * 'T * TensorSpan -> TensorSpan (requires 'T :> System.Numerics.INumber<'T>)
Public Function Min(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T, ByRef destination As TensorSpan(Of T)) As TensorSpan(Of T)

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
T

スパンとして表される 2 番目のテンソル。

destination
TensorSpan<T>

スパンとして表される宛先テンソル。

戻り値

適用対象

Min<T>(ReadOnlyTensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソル内の最小数を検索します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static T Min(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static T Min<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.INumber<T>;
static member Min : ReadOnlyTensorSpan -> 'T (requires 'T :> System.Numerics.INumber<'T>)
Public Function Min(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As T

型パラメーター

T

パラメーター

戻り値

T

適用対象

Min<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

ソース:
TensorExtensions.cs

指定したテンソル内の数値の要素ごとの最小値を計算します。

public:
generic <typename T>
 where T : System::Numerics::INumber<T> static System::Numerics::Tensors::Tensor<T> ^ Min(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static System.Numerics.Tensors.Tensor<T> Min<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.INumber<T>;
static member Min : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.INumber<'T>)> (requires 'T :> System.Numerics.INumber<'T>)
Public Function Min(Of T As INumber(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Tensor(Of T)

型パラメーター

T

パラメーター

x
ReadOnlyTensorSpan<T>

スパンとして表される最初のテンソル。

y
ReadOnlyTensorSpan<T>

スパンとして表される 2 番目のテンソル。

戻り値

適用対象