From 17a767c76e2fbacf7b155e97c9a6b00c9ff7ef78 Mon Sep 17 00:00:00 2001 From: Leo Schmidt <lschmidt@math.fu-berlin.de> Date: Wed, 17 Feb 2010 10:08:57 +0000 Subject: [PATCH] changed include <cmath.h> to <cmath> [[Imported from SVN: r5581]] --- src/svd.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/svd.hh b/src/svd.hh index bb2ba979..8374d1ca 100644 --- a/src/svd.hh +++ b/src/svd.hh @@ -4,7 +4,7 @@ #ifndef SVD_HH #define SVD_HH -#include <cmath.h> +#include <cmath> template <class T> @@ -30,7 +30,7 @@ T pythag(T a, T b) /** Given a matrix a[1..m][1..n], this routine computes its singular value decomposition, A = - U ·W ·V^T . The matrix U replaces a on output. The diagonal matrix of singular values W is out- + U W V^T . The matrix U replaces a on output. The diagonal matrix of singular values W is out- put as a vector w[1..n]. The matrix V (not the transpose V T ) is output as v[1..n][1..n]. */ template <class T, int m, int n> -- GitLab