Returns a value indicating whether two instances
of matrix are equal.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static bool operator ==(
Matrix<T> matrix1,
Matrix<T> matrix2
)
Public Shared Operator = (
matrix1 As Matrix(Of T),
matrix2 As Matrix(Of T)
) As Boolean
public:
static bool operator ==(
Matrix<T>^ matrix1,
Matrix<T>^ matrix2
)
static let inline (=)
matrix1 : Matrix<'T> *
matrix2 : Matrix<'T> : bool
Parameters
- matrix1
- Type: Extreme.MathematicsMatrixT
A MatrixT. - matrix2
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Return Value
Type:
Boolean if the two vectors have the
same length and identical elements; otherwise
.
Reference