다음을 통해 공유


TensorPrimitives.Hypot<T> 메서드

정의

오른쪽 각도 삼각형에서 더 짧은 면의 길이를 나타내는 두 텐서의 값에 지정된 요소별 가설을 계산합니다.

public:
generic <typename T>
 where T : System::Numerics::IRootFunctions<T> static void Hypot(ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination);
public static void Hypot<T> (ReadOnlySpan<T> x, ReadOnlySpan<T> y, Span<T> destination) where T : System.Numerics.IRootFunctions<T>;
static member Hypot : ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> * ReadOnlySpan<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> * Span<'T (requires 'T :> System.Numerics.IRootFunctions<'T>)> -> unit (requires 'T :> System.Numerics.IRootFunctions<'T>)
Public Shared Sub Hypot(Of T As IRootFunctions(Of T)) (x As ReadOnlySpan(Of T), y As ReadOnlySpan(Of T), destination As Span(Of T))

형식 매개 변수

T

매개 변수

x
ReadOnlySpan<T>

범위로 표시되는 첫 번째 텐서입니다.

y
ReadOnlySpan<T>

범위로 표시되는 두 번째 텐서입니다.

destination
Span<T>

범위로 표시되는 대상 텐서입니다.

예외

ydestination 겹치는 메모리 위치를 참조하며 동일한 위치에서 시작하지 않습니다.

설명

이 메서드는 destination[i] = T.Hypot(x[i], x[i])효과적으로 계산합니다.

적용 대상