TensorPrimitives.IndexOfMax 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
IndexOfMax(ReadOnlySpan<Single>) |
在指定的张量中搜索最大单精度浮点数的索引。 |
IndexOfMax<T>(ReadOnlySpan<T>) |
搜索指定张量中最大数字的索引。 |
IndexOfMax(ReadOnlySpan<Single>)
- Source:
- TensorPrimitives.cs
- Source:
- TensorPrimitives.Single.cs
在指定的张量中搜索最大单精度浮点数的索引。
public:
static int IndexOfMax(ReadOnlySpan<float> x);
public static int IndexOfMax (ReadOnlySpan<float> x);
static member IndexOfMax : ReadOnlySpan<single> -> int
Public Shared Function IndexOfMax (x As ReadOnlySpan(Of Single)) As Integer
参数
张量,表示为范围。
返回
x
中最大元素的索引;如果 x
为空,则为 -1。
注解
最大元素的确定与 IEEE 754:2019“maximum”函数匹配。 如果存在等于 NaN 的任何值,则返回第一个值的索引。 正 0 被视为大于负 0。
此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。
适用于
IndexOfMax<T>(ReadOnlySpan<T>)
搜索指定张量中最大数字的索引。
public:
generic <typename T>
where T : System::Numerics::INumber<T> static int IndexOfMax(ReadOnlySpan<T> x);
public static int IndexOfMax<T> (ReadOnlySpan<T> x) where T : System.Numerics.INumber<T>;
static member IndexOfMax : ReadOnlySpan<'T (requires 'T :> System.Numerics.INumber<'T>)> -> int (requires 'T :> System.Numerics.INumber<'T>)
Public Shared Function IndexOfMax(Of T As INumber(Of T)) (x As ReadOnlySpan(Of T)) As Integer
类型参数
- T
参数
张量,表示为范围。
返回
x
中最大元素的索引;如果 x
为空,则为 -1。
注解
最大元素的确定与 IEEE 754:2019“maximum”函数匹配。 如果存在等于 NaN 的任何值,则返回第一个值的索引。 正 0 被视为大于负 0。
此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。