From 7db81b9bddd0d2caeae6998a01973e512920f192 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 3 Jun 2018 10:35:15 +0200 Subject: [PATCH] Fix spacing --- Math/Matrix/Matrix.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Math/Matrix/Matrix.php b/Math/Matrix/Matrix.php index e77160ac9..93d28b474 100644 --- a/Math/Matrix/Matrix.php +++ b/Math/Matrix/Matrix.php @@ -185,7 +185,7 @@ class Matrix implements \ArrayAccess, \Iterator */ public function getSubMatrixByColumnsRows(array $rows, array $cols) : Matrix { - $X = [[]]; + $X = [[]]; $rlength = count($rows); $clength = count($cols);