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

This commit is contained in:
Arash Partow
2014-07-15 23:09:08 +10:00
parent 5c21af90e1
commit 12f65b3ff3
15 changed files with 275 additions and 16 deletions

View File

@ -21,7 +21,7 @@
#include "exprtk.hpp"
template<typename T>
template <typename T>
void square_wave2()
{
typedef exprtk::symbol_table<T> symbol_table_t;
@ -30,7 +30,7 @@ void square_wave2()
std::string wave_program =
" var r := 0; "
" for(i := 0; i < 1000; i += 1) "
" for(var i := 0; i < 1000; i += 1) "
" { "
" r += (1 / (2i + 1)) * sin((4i + 2) * pi * f * t); "
" }; "