TensorPrimitives.Norm 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Norm(ReadOnlySpan<Single>) |
지정된 단정밀도 부동 소수점 숫자의 텐서에 대한 유클리드 표준 계산 |
Norm<T>(ReadOnlySpan<T>) |
지정된 숫자 텐서의 유클리드 표준을 계산합니다. |
Norm(ReadOnlySpan<Single>)
- Source:
- TensorPrimitives.cs
- Source:
- TensorPrimitives.Single.cs
- Source:
- TensorPrimitives.Single.cs
지정된 단정밀도 부동 소수점 숫자의 텐서에 대한 유클리드 표준 계산
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))
효과적으로 계산합니다. 이것은 종종 유클리드 규범 또는 L2 규범이라고합니다.
BLAS1
정의된 nrm2
메서드에 해당합니다.
입력 값이 NaN같으면 결과 값도 NaN입니다.
이 메서드는 기본 C 런타임을 호출하거나 현재 아키텍처와 관련된 지침을 사용할 수 있습니다. 정확한 결과는 운영 체제 또는 아키텍처마다 다를 수 있습니다.
적용 대상
Norm<T>(ReadOnlySpan<T>)
- Source:
- TensorPrimitives.Norm.cs
- Source:
- TensorPrimitives.Norm.cs
지정된 숫자 텐서의 유클리드 표준을 계산합니다.
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
매개 변수
범위로 표시되는 첫 번째 텐서입니다.
반환
규범입니다.
설명
이 메서드는
효과적으로 계산합니다. 이것은 종종 유클리드 규범 또는 L2 규범이라고합니다.
T
.Sqrt(TensorPrimitives.SumOfSquares(x))BLAS1
정의된 nrm2
메서드에 해당합니다.
입력 값이 NaN같으면 결과 값도 NaN입니다.
이 메서드는 기본 C 런타임을 호출하거나 현재 아키텍처와 관련된 지침을 사용할 수 있습니다. 정확한 결과는 운영 체제 또는 아키텍처마다 다를 수 있습니다.
적용 대상
.NET