C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html

This commit is contained in:
Arash Partow
2014-06-13 04:24:23 +10:00
parent 2707dd186e
commit 840e442a1b
2 changed files with 13 additions and 3 deletions

View File

@ -69,7 +69,7 @@ void savitzky_golay_filter()
const T pi = T(3.141592653589793238462);
srand(time(0));
srand(static_cast<unsigned int>(time(0)));
// Generate a signal with noise.
for (T t = T(-5); t <= T(+5); t += T(10.0 / n))