共用方式為


TensorPrimitives.Norm 方法

定義

多載

Norm(ReadOnlySpan<Single>)

計算單精度浮點數之指定張數的 Euclidean 常態。

Norm<T>(ReadOnlySpan<T>)

計算指定之數位張數的 Euclidean 常態。

Norm(ReadOnlySpan<Single>)

來源:
TensorPrimitives.cs
來源:
TensorPrimitives.Single.cs
來源:
TensorPrimitives.Single.cs

計算單精度浮點數之指定張數的 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

參數

x
ReadOnlySpan<Single>

第一個張量,以範圍表示。

傳回

常態。

備註

這個方法會有效地計算 MathF.Sqrt(TensorPrimitives.SumOfSquares(x))。 這通常稱為 Euclidean norm 或 L2 norm。 它會對應至 BLAS1所定義的 nrm2 方法。

如果任何輸入值等於 NaN,則結果值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於

Norm<T>(ReadOnlySpan<T>)

來源:
TensorPrimitives.Norm.cs
來源:
TensorPrimitives.Norm.cs

計算指定之數位張數的 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

參數

x
ReadOnlySpan<T>

第一個張量,以範圍表示。

傳回

T

常態。

備註

這個方法會有效地計算 T.Sqrt(TensorPrimitives.SumOfSquares(x))。 這通常稱為 Euclidean norm 或 L2 norm。 它會對應至 BLAS1所定義的 nrm2 方法。

如果任何輸入值等於 NaN,則結果值也是 NaN。

這個方法可能會呼叫基礎 C 運行時間,或採用目前架構特有的指示。 不同操作系統或架構之間的確切結果可能會有所不同。

適用於