Code Duplication    Length = 3-3 lines in 2 locations

src/PhpSpreadsheet/Shared/JAMA/EigenvalueDecomposition.php 2 locations

@@ 304-306 (lines=3) @@
301
        for ($m = $low + 1; $m <= $high - 1; ++$m) {
302
            // Scale column.
303
            $scale = 0.0;
304
            for ($i = $m; $i <= $high; ++$i) {
305
                $scale = $scale + abs($this->H[$i][$m - 1]);
306
            }
307
            if ($scale != 0.0) {
308
                // Compute Householder transformation.
309
                $h = 0.0;
@@ 355-357 (lines=3) @@
352
        }
353
        for ($m = $high - 1; $m >= $low + 1; --$m) {
354
            if ($this->H[$m][$m - 1] != 0.0) {
355
                for ($i = $m + 1; $i <= $high; ++$i) {
356
                    $this->ort[$i] = $this->H[$i][$m - 1];
357
                }
358
                for ($j = $m; $j <= $high; ++$j) {
359
                    $g = 0.0;
360
                    for ($i = $m; $i <= $high; ++$i) {