Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 205-207 (lines=3) @@
202
                        $this->U[$i][$k] = -$this->U[$i][$k];
203
                    }
204
                    $this->U[$k][$k] = 1.0 + $this->U[$k][$k];
205
                    for ($i = 0; $i < $k - 1; ++$i) {
206
                        $this->U[$i][$k] = 0.0;
207
                    }
208
                } else {
209
                    for ($i = 0; $i < $this->m; ++$i) {
210
                        $this->U[$i][$k] = 0.0;
@@ 209-211 (lines=3) @@
206
                        $this->U[$i][$k] = 0.0;
207
                    }
208
                } else {
209
                    for ($i = 0; $i < $this->m; ++$i) {
210
                        $this->U[$i][$k] = 0.0;
211
                    }
212
                    $this->U[$k][$k] = 1.0;
213
                }
214
            }