Edit

Share via


TensorPrimitives.Max Method

Definition

Overloads

Max(ReadOnlySpan<Single>)
Max(ReadOnlySpan<Single>, ReadOnlySpan<Single>, Span<Single>)
Max<T>(ReadOnlySpan<T>)
Max<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)
Max<T>(ReadOnlySpan<T>, T, Span<T>)

Max(ReadOnlySpan<Single>)

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs
Source:
TensorPrimitives.Single.cs
public:
 static float Max(ReadOnlySpan<float> x);
public static float Max (ReadOnlySpan<float> x);
static member Max : ReadOnlySpan<single> -> single
Public Shared Function Max (x As ReadOnlySpan(Of Single)) As Single

Parameters

Returns

Applies to

Max(ReadOnlySpan<Single>, ReadOnlySpan<Single>, Span<Single>)

Source:
TensorPrimitives.cs
Source:
TensorPrimitives.Single.cs
Source:
TensorPrimitives.Single.cs
public:
 static void Max(ReadOnlySpan<float> x, ReadOnlySpan<float> y, Span<float> destination);
public static void Max (ReadOnlySpan<float> x, ReadOnlySpan<float> y, Span<float> destination);
static member Max : ReadOnlySpan<single> * ReadOnlySpan<single> * Span<single> -> unit
Public Shared Sub Max (x As ReadOnlySpan(Of Single), y As ReadOnlySpan(Of Single), destination As Span(Of Single))

Parameters

destination
Span<Single>

Applies to

Max<T>(ReadOnlySpan<T>)

Source:
TensorPrimitives.Max.cs
Source:
TensorPrimitives.Max.cs
public:
generic <typename T>
 where T : System::Numerics::INumber<T> static T Max(ReadOnlySpan<T> x);
public static T Max<T> (ReadOnlySpan<T> x) where T : System.Numerics.INumber<T>;
static member Max : ReadOnlySpan<'T (requires 'T :> System.Numerics.INumber<'T>)> -> 'T (requires 'T :> System.Numerics.INumber<'T>)
Public Shared Function Max(Of T As INumber(Of T)) (x As ReadOnlySpan(Of T)) As T

Type Parameters

T

Parameters

Returns

T

Applies to

Max<T>(ReadOnlySpan<T>, ReadOnlySpan<T>, Span<T>)

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

Type Parameters

T

Parameters

destination
Span<T>

Applies to

Max<T>(ReadOnlySpan<T>, T, Span<T>)

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

Type Parameters

T

Parameters

y
T
destination
Span<T>

Applies to