Skip to content
Snippets Groups Projects
Commit 17a767c7 authored by Leo Schmidt's avatar Leo Schmidt Committed by oel@PCPOOL.MI.FU-BERLIN.DE
Browse files

changed include <cmath.h> to <cmath>

[[Imported from SVN: r5581]]
parent c3c58400
No related branches found
No related tags found
No related merge requests found
......@@ -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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment