Tensor.LessThan Method

Definition

Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.0

Overload List

LessThan<T>(Tensor<T>, T, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder) Returns whether the elements of a tensor are less than a scalar..
LessThan<T>(Tensor<T>, Tensor<T>, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder) Returns whether the elements of one tensor are less than the corresponding elements of another tensor..
LessThan<T>(T, Tensor<T>, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder) Returns whether a scalar are less than the elements of a tensor..

LessThan<T>(Tensor<T>, T, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder)

Returns whether the elements of a tensor are less than a scalar..
C#
public static Tensor<bool> LessThan<T>(
	Tensor<T> left,
	T right,
	Tensor<bool>? result = null,
	Tensor<bool>? mask = null,
	TensorElementOrder order = TensorElementOrder.Automatic
)

Parameters

left  Tensor<T>
A tensor that serves as the left operand.
right  T
A scalar that serves as the right operand.
result  Tensor<Boolean>  (Optional)
Optional. The tensor that is to hold the result. May be null.
mask  Tensor<Boolean>  (Optional)
Optional. A boolean tensor that specifies for which elements the operation should be performed. If null (the default), the operation is applied everywhere.
order  TensorElementOrder  (Optional)
Optional. If result is null, the desired ordering in memory of the result.

Type Parameters

T
The type of the elements of the tensor.

Return Value

Tensor<Boolean>
A tensor of the same shape as left whose elements are equal to the of the corresponding elements of left and right.

Exceptions

LessThan<T>(Tensor<T>, Tensor<T>, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder)

Returns whether the elements of one tensor are less than the corresponding elements of another tensor..
C#
public static Tensor<bool> LessThan<T>(
	Tensor<T> left,
	Tensor<T> right,
	Tensor<bool>? result = null,
	Tensor<bool>? mask = null,
	TensorElementOrder order = TensorElementOrder.Automatic
)

Parameters

left  Tensor<T>
A tensor that serves as the left operand.
right  Tensor<T>
A tensor that serves as the right operand.
result  Tensor<Boolean>  (Optional)
Optional. The tensor that is to hold the result. May be null.
mask  Tensor<Boolean>  (Optional)
Optional. A boolean tensor that specifies for which elements should be included in the operation. If null (the default), the operation is applied everywhere.
order  TensorElementOrder  (Optional)
Optional. If result is null, the desired ordering in memory of the result.

Type Parameters

T
The type of the elements of the tensors.

Return Value

Tensor<Boolean>
A tensor of the same shape as left and right whose elements are equal to the of the corresponding elements of left and right.

Exceptions

ArgumentNullException

left is null.

-or-

right is null.

LessThan<T>(T, Tensor<T>, Tensor<Boolean>, Tensor<Boolean>, TensorElementOrder)

Returns whether a scalar are less than the elements of a tensor..
C#
public static Tensor<bool> LessThan<T>(
	T left,
	Tensor<T> right,
	Tensor<bool>? result = null,
	Tensor<bool>? mask = null,
	TensorElementOrder order = TensorElementOrder.Automatic
)

Parameters

left  T
A scalar that serves as the left operand.
right  Tensor<T>
A tensor that serves as the right operand.
result  Tensor<Boolean>  (Optional)
Optional. The tensor that is to hold the result. May be null.
mask  Tensor<Boolean>  (Optional)
Optional. A boolean tensor that specifies for which elements the operation should be performed. If null (the default), the operation is applied everywhere.
order  TensorElementOrder  (Optional)
Optional. If result is null, the desired ordering in memory of the result.

Type Parameters

T
The type of the elements of the tensor.

Return Value

Tensor<Boolean>
A tensor of the same shape as right whose elements are equal to the of left and the corresponding elements of right.

Exceptions

ArgumentNullException

right is null.

See Also