Code Duplication    Length = 3-3 lines in 2 locations

src/Phpml/Math/LinAlg/EigenValueDecomposition.php 2 locations

@@ 310-312 (lines=3) @@
307
        for ($m = $low+1; $m <= $high-1; ++$m) {
308
            // Scale column.
309
            $scale = 0.0;
310
            for ($i = $m; $i <= $high; ++$i) {
311
                $scale = $scale + abs($this->H[$i][$m-1]);
312
            }
313
            if ($scale != 0.0) {
314
                // Compute Householder transformation.
315
                $h = 0.0;
@@ 361-363 (lines=3) @@
358
        }
359
        for ($m = $high-1; $m >= $low+1; --$m) {
360
            if ($this->H[$m][$m-1] != 0.0) {
361
                for ($i = $m+1; $i <= $high; ++$i) {
362
                    $this->ort[$i] = $this->H[$i][$m-1];
363
                }
364
                for ($j = $m; $j <= $high; ++$j) {
365
                    $g = 0.0;
366
                    for ($i = $m; $i <= $high; ++$i) {