Tensor<T>.LessThanOrEqual Operator

Definition

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

Overload List

LessThanOrEqual(T, Tensor<T>) Returns whether a scalar are less than or equal to the elements of a tensor..
LessThanOrEqual(Tensor<T>, T) Returns whether the elements of a tensor are less than or equal to a scalar..
LessThanOrEqual(Tensor<T>, Tensor<T>) Returns whether the elements of one tensor are less than or equal to the corresponding elements of another tensor..

LessThanOrEqual(T, Tensor<T>) Operator

Returns whether a scalar are less than or equal to the elements of a tensor..
C#
public static Tensor<bool> operator <=(
	T left,
	Tensor<T> right
)

Parameters

left  T
A scalar that serves as the left operand.
right  Tensor<T>
A tensor that serves as the right operand.

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.

LessThanOrEqual(Tensor<T>, T) Operator

Returns whether the elements of a tensor are less than or equal to a scalar..
C#
public static Tensor<bool> operator <=(
	Tensor<T> left,
	T right
)

Parameters

left  Tensor<T>
A tensor that serves as the left operand.
right  T
A scalar that serves as the right operand.

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

LessThanOrEqual(Tensor<T>, Tensor<T>) Operator

Returns whether the elements of one tensor are less than or equal to the corresponding elements of another tensor..
C#
public static Tensor<bool> operator <=(
	Tensor<T> left,
	Tensor<T> right
)

Parameters

left  Tensor<T>
A tensor that serves as the left operand.
right  Tensor<T>
A tensor that serves as the right operand.

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.

See Also