편집

다음을 통해 공유


Tensor.IndexOfMin Method

Definition

Overloads

IndexOfMin<T>(ReadOnlyTensorSpan<T>)
IndexOfMin<T>(Tensor<T>)

IndexOfMin<T>(ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::INumber<T> static int IndexOfMin(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % input);
public static int IndexOfMin<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> input) where T : System.Numerics.INumber<T>;
static member IndexOfMin : ReadOnlyTensorSpan -> int (requires 'T :> System.Numerics.INumber<'T>)
Public Function IndexOfMin(Of T As INumber(Of T)) (ByRef input As ReadOnlyTensorSpan(Of T)) As Integer

Type Parameters

T

Parameters

Returns

Applies to

IndexOfMin<T>(Tensor<T>)

Source:
TensorExtensions.cs
public:
generic <typename T>
 where T : System::Numerics::INumber<T> static int IndexOfMin(System::Numerics::Tensors::Tensor<T> ^ input);
public static int IndexOfMin<T> (System.Numerics.Tensors.Tensor<T> input) where T : System.Numerics.INumber<T>;
static member IndexOfMin : System.Numerics.Tensors.Tensor<'T (requires 'T :> System.Numerics.INumber<'T>)> -> int (requires 'T :> System.Numerics.INumber<'T>)
Public Function IndexOfMin(Of T As INumber(Of T)) (input As Tensor(Of T)) As Integer

Type Parameters

T

Parameters

input
Tensor<T>

Returns

Applies to