Share via


Tensor.Average<T>(ReadOnlyTensorSpan<T>) Method

Definition

Returns the average of the elements in the x tensor.

public:
generic <typename T>
 where T : System::Numerics::IFloatingPoint<T> static T Average(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x);
public static T Average<T> (scoped in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x) where T : System.Numerics.IFloatingPoint<T>;
static member Average : ReadOnlyTensorSpan -> 'T (requires 'T :> System.Numerics.IFloatingPoint<'T>)
Public Function Average(Of T As IFloatingPoint(Of T)) (ByRef x As ReadOnlyTensorSpan(Of T)) As T

Type Parameters

T

Parameters

x
ReadOnlyTensorSpan<T>

The TensorSpan<T> to take the mean of.

Returns

T

T representing the mean.

Applies to