Delen via


Tensor.GreaterThanAll Method

Definition

Overloads

GreaterThanAll<T>(T, ReadOnlyTensorSpan<T>)

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of y are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in y are greater than y.

GreaterThanAll<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of x are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in x are greater than y.

GreaterThanAll<T>(ReadOnlyTensorSpan<T>, T)

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of x are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in x are greater than y.

GreaterThanAll<T>(T, ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of y are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in y are greater than y.

public:
generic <typename T>
 where T : System::Numerics::IComparisonOperators<T, T, bool> static bool GreaterThanAll(T x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static bool GreaterThanAll<T> (T x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member GreaterThanAll : 'T * ReadOnlyTensorSpan -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function GreaterThanAll(Of T As IComparisonOperators(Of T, T, Boolean)) (x As T, ByRef y As ReadOnlyTensorSpan(Of T)) As Boolean

Type Parameters

T

Parameters

x
T

First ReadOnlyTensorSpan<T> to compare.

y
ReadOnlyTensorSpan<T>

Second ReadOnlyTensorSpan<T> to compare against.

Returns

Boolean where the value is true if all elements in y are greater than y.

Applies to

GreaterThanAll<T>(ReadOnlyTensorSpan<T>, ReadOnlyTensorSpan<T>)

Source:
TensorExtensions.cs

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of x are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in x are greater than y.

public:
generic <typename T>
 where T : System::Numerics::IComparisonOperators<T, T, bool> static bool GreaterThanAll(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, System::Numerics::Tensors::ReadOnlyTensorSpan<T> % y);
public static bool GreaterThanAll<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, in System.Numerics.Tensors.ReadOnlyTensorSpan<T> y) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member GreaterThanAll : ReadOnlyTensorSpan * ReadOnlyTensorSpan -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function GreaterThanAll(Of T As IComparisonOperators(Of T, T, Boolean)) (ByRef x As ReadOnlyTensorSpan(Of T), ByRef y As ReadOnlyTensorSpan(Of T)) As Boolean

Type Parameters

T

Parameters

y
ReadOnlyTensorSpan<T>

Second ReadOnlyTensorSpan<T> to compare against.

Returns

Boolean where the value is true if all elements in x are greater than y.

Applies to

GreaterThanAll<T>(ReadOnlyTensorSpan<T>, T)

Source:
TensorExtensions.cs

Compares the elements of two ReadOnlyTensorSpan<T> to see if all elements of x are greater than y. If the shapes are not the same, the tensors are broadcasted to the smallest broadcastable size before they are compared. It returns a Boolean where the value is true if all elements in x are greater than y.

public:
generic <typename T>
 where T : System::Numerics::IComparisonOperators<T, T, bool> static bool GreaterThanAll(System::Numerics::Tensors::ReadOnlyTensorSpan<T> % x, T y);
public static bool GreaterThanAll<T> (in System.Numerics.Tensors.ReadOnlyTensorSpan<T> x, T y) where T : System.Numerics.IComparisonOperators<T,T,bool>;
static member GreaterThanAll : ReadOnlyTensorSpan * 'T -> bool (requires 'T :> System.Numerics.IComparisonOperators<'T, 'T, bool>)
Public Function GreaterThanAll(Of T As IComparisonOperators(Of T, T, Boolean)) (ByRef x As ReadOnlyTensorSpan(Of T), y As T) As Boolean

Type Parameters

T

Parameters

y
T

Second ReadOnlyTensorSpan<T> to compare against.

Returns

Boolean where the value is true if all elements in x are greater than y.

Applies to