MatrixEquals Method (Matrix, Matrix) |
Indicates whether the two provided matrices hold the same data. The type of matrix is not examined, only their dimensions
and the value of the elements at each index.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static bool Equals(
Matrix left,
Matrix right
)
Public Shared Function Equals (
left As Matrix,
right As Matrix
) As Boolean
public:
static bool Equals(
Matrix^ left,
Matrix^ right
)
static member Equals :
left : Matrix *
right : Matrix -> bool
Parameters
- left
- Type: AGI.Foundation.CoordinatesMatrix
The first matrix to compare. - right
- Type: AGI.Foundation.CoordinatesMatrix
The second matrix to compare.
Return Value
Type:
Boolean if the given matrices hold the same values; otherwise
.
See Also