We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9764083 commit 77de387Copy full SHA for 77de387
src/LinearAlgebra/NumericMatrix.php
@@ -542,7 +542,7 @@ public function isRectangularDiagonal(): bool
542
$n = $this->n;
543
for ($i = 0; $i < $m; $i++) {
544
for ($j = 0; $j < $n; $j++) {
545
- if ($i !== $j && !Support::isZero($this->A[$i][$j])) {
+ if ($i !== $j && !Support::isZero($this->A[$i][$j], $this->getError())) {
546
return false;
547
}
548
0 commit comments