TensorPrimitives.SumOfSquares 方法

定义

重载

SumOfSquares(ReadOnlySpan<Single>)

计算指定张量中单精度浮点数中每个元素的平方和。

SumOfSquares<T>(ReadOnlySpan<T>)

计算指定张量中每个元素的平方和。

SumOfSquares(ReadOnlySpan<Single>)

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs

计算指定张量中单精度浮点数中每个元素的平方和。

public:
 static float SumOfSquares(ReadOnlySpan<float> x);
public static float SumOfSquares (ReadOnlySpan<float> x);
static member SumOfSquares : ReadOnlySpan<single> -> single
Public Shared Function SumOfSquares (x As ReadOnlySpan(Of Single)) As Single

参数

x
ReadOnlySpan<Single>

张量,表示为范围。

返回

x中添加每个元素的平方的结果;如果 x 为空,则为零。

注解

此方法有效计算: Span<float> squaredValues = ...; TensorPrimitives.Multiply(x, x, squaredValues); float result = TensorPrimitives.Sum(squaredValues); ,但不要求中间存储平方值。

此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。

适用于

SumOfSquares<T>(ReadOnlySpan<T>)

Source:
TensorPrimitives.Sum.cs

计算指定张量中每个元素的平方和。

public:
generic <typename T>
 where T : System::Numerics::IAdditionOperators<T, T, T>, System::Numerics::IAdditiveIdentity<T, T>, System::Numerics::IMultiplyOperators<T, T, T> static T SumOfSquares(ReadOnlySpan<T> x);
public static T SumOfSquares<T> (ReadOnlySpan<T> x) where T : System.Numerics.IAdditionOperators<T,T,T>, System.Numerics.IAdditiveIdentity<T,T>, System.Numerics.IMultiplyOperators<T,T,T>;
static member SumOfSquares : ReadOnlySpan<'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T>)> -> 'T (requires 'T :> System.Numerics.IAdditionOperators<'T, 'T, 'T> and 'T :> System.Numerics.IAdditiveIdentity<'T, 'T> and 'T :> System.Numerics.IMultiplyOperators<'T, 'T, 'T>)
Public Shared Function SumOfSquares(Of T As {IAdditionOperators(Of T, T, T), IAdditiveIdentity(Of T, T), IMultiplyOperators(Of T, T, T)}) (x As ReadOnlySpan(Of T)) As T

类型参数

T

参数

x
ReadOnlySpan<T>

张量,表示为范围。

返回

T

x中添加每个元素的平方的结果;如果 x 为空,则为零。

注解

此方法有效计算: Span<T> squaredValues = ...; TensorPrimitives.Multiply(x, x, squaredValues); T result = TensorPrimitives.Sum(squaredValues); ,但不要求中间存储平方值。

此方法可以调用基础 C 运行时,或使用特定于当前体系结构的说明。 不同的操作系统或体系结构之间的确切结果可能有所不同。

适用于