public bool Equals(IMatrix other)
 {
     return(MatrixOperations.EpsilonEquals(this, other));
 }
 public override string ToString()
 {
     return(MatrixOperations.ToString(this));
 }