Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 211-213 (lines=3) @@
208
                        $this->U[$i][$k] = -$this->U[$i][$k];
209
                    }
210
                    $this->U[$k][$k] = 1.0 + $this->U[$k][$k];
211
                    for ($i = 0; $i < $k - 1; ++$i) {
212
                        $this->U[$i][$k] = 0.0;
213
                    }
214
                } else {
215
                    for ($i = 0; $i < $this->m; ++$i) {
216
                        $this->U[$i][$k] = 0.0;
@@ 215-217 (lines=3) @@
212
                        $this->U[$i][$k] = 0.0;
213
                    }
214
                } else {
215
                    for ($i = 0; $i < $this->m; ++$i) {
216
                        $this->U[$i][$k] = 0.0;
217
                    }
218
                    $this->U[$k][$k] = 1.0;
219
                }
220
            }