Matrix.GreaterThanInto<T>(T, Matrix<T>, Matrix<Boolean>) Method

Checks if the elements of one matrix are greater than a constant.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Matrix<bool> GreaterThanInto<T>(
	T left,
	Matrix<T> right,
	Matrix<bool> result
)

Parameters

left  T
A constant.
right  Matrix<T>
A matrix.
result  Matrix<Boolean>
The matrix that is to hold the result. May be null.

Type Parameters

T

Return Value

Matrix<Boolean>
A boolean matrix whose elements are true if left is greater than the corresponding element in right, and false otherwise.

Exceptions

See Also