expectException(MatrixException::class); new LUDecomposition(new Matrix([1, 2, 3, 4, 5])); } public function testSolveWithInvalidMatrix(): void { $this->expectException(MatrixException::class); $lu = new LUDecomposition(new Matrix([[1, 2], [3, 4]])); $lu->solve(new Matrix([1, 2, 3])); } public function testLowerTriangularFactor(): void { $lu = new LUDecomposition(new Matrix([[1, 2], [3, 4]])); $L = $lu->getL(); self::assertSame([[1.0, 0.0], [0.3333333333333333, 1.0]], $L->toArray()); } public function testUpperTriangularFactor(): void { $lu = new LUDecomposition(new Matrix([[1, 2], [3, 4]])); $U = $lu->getU(); self::assertSame([[3.0, 4.0], [0.0, 0.6666666666666667]], $U->toArray()); } }