IMathSameMatrix Method

Check the two matrix objects, whether they identically. Check all elements of the matrix 1 and matrix 2, if all elements are identically it returns true.

Definition

Namespace: PCBI.MathUtils
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
public static bool SameMatrix(
	Matrix Matrix1,
	Matrix Matrix2
)

Parameters

Matrix1  Matrix
First matrix object.
Matrix2  Matrix
Second matrix object.

Return Value

Boolean
True if all elements of both matrix are identically.

See Also