diff options
Diffstat (limited to 'src/math/matrix.php')
-rw-r--r-- | src/math/matrix.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/matrix.php b/src/math/matrix.php index 9429460..8d03c91 100644 --- a/src/math/matrix.php +++ b/src/math/matrix.php @@ -516,7 +516,7 @@ class ezcGraphMatrix $string .= '| '; for ( $j = 0; $j < $this->columns; ++$j ) { - $string .= sprintf( '%04.2f ', $this->get( $i, $j ) ); + $string .= sprintf( '%04.2F ', $this->get( $i, $j ) ); } $string .= "|\n"; } |