TensorPrimitives.Norm 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Norm(ReadOnlySpan<Single>) |
計算單精度浮點數之指定張數的 Euclidean 常態。 |
Norm<T>(ReadOnlySpan<T>) |
計算指定之數位張數的 Euclidean 常態。 |
Norm(ReadOnlySpan<Single>)
計算單精度浮點數之指定張數的 Euclidean 常態。
public:
static float Norm(ReadOnlySpan<float> x);
public static float Norm (ReadOnlySpan<float> x);
static member Norm : ReadOnlySpan<single> -> single
Public Shared Function Norm (x As ReadOnlySpan(Of Single)) As Single
參數
第一個張量,以範圍表示。
傳回
常態。
備註
這個方法會有效地計算 MathF.Sqrt(TensorPrimitives.SumOfSquares(x))
。 這通常稱為 Euclidean norm 或 L2 norm。 它會對應至 BLAS1
所定義的 nrm2
方法。
如果任何輸入值等於 NaN,則結果值也是 NaN。
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。
適用於
Norm<T>(ReadOnlySpan<T>)
計算指定之數位張數的 Euclidean 常態。
public:
generic <typename T>
where T : System::Numerics::IRootFunctions<T> static T Norm(ReadOnlySpan<T> x);
public static T Norm<T> (ReadOnlySpan<T> x) where T : System.Numerics.IRootFunctions<T>;
static member Norm : ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> -> 'T (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Shared Function Norm(Of T As IRootFunctions(Of T)) (x As ReadOnlySpan(Of T)) As T
類型參數
- T
參數
第一個張量,以範圍表示。
傳回
T
常態。
備註
這個方法會有效地計算
。 這通常稱為 Euclidean norm 或 L2 norm。 它會對應至 T
.Sqrt(TensorPrimitives.SumOfSquares(x))BLAS1
所定義的 nrm2
方法。
如果任何輸入值等於 NaN,則結果值也是 NaN。
這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。