Checks if the elements of one matrix are not equal to a constant.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<bool> NotEqualToInto<T>(
Matrix<T> left,
T right,
Matrix<bool> result
)
Public Shared Function NotEqualToInto(Of T) (
left As Matrix(Of T),
right As T,
result As Matrix(Of Boolean)
) As Matrix(Of Boolean)
public:
generic<typename T>
static Matrix<bool>^ NotEqualToInto(
Matrix<T>^ left,
T right,
Matrix<bool>^ result
)
static member NotEqualToInto :
left : Matrix<'T> *
right : 'T *
result : Matrix<bool> -> Matrix<bool>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A matrix. - right
- Type: T
A constant. - result
- Type: Extreme.MathematicsMatrixBoolean
The matrix that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
MatrixBooleanA boolean matrix whose elements are
if the corresponding element in
left
is not equal to
right, and
otherwise.
Reference