forked from ArashPartow/exprtk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C++ Mathematical Expression Library (ExprTk) http://www.partow.net/pr…
- Loading branch information
1 parent
e44540b
commit 2a810cc
Showing
13 changed files
with
915 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
************************************************************** | ||
* C++ Mathematical Expression Toolkit Library * | ||
* * | ||
* Simple Example 1 * | ||
* Author: Arash Partow (1999-2013) * | ||
* URL: http://www.partow.net/programming/exprtk/index.html * | ||
* * | ||
* Copyright notice: * | ||
* Free use of the Mathematical Expression Toolkit Library is * | ||
* permitted under the guidelines and in accordance with the * | ||
* most current version of the Common Public License. * | ||
* http://www.opensource.org/licenses/cpl1.0.php * | ||
* * | ||
************************************************************** | ||
*/ | ||
|
||
|
||
#include <cstdio> | ||
#include <string> | ||
#include "exprtk.hpp" | ||
|
||
|
||
template<typename T> | ||
void trig_function() | ||
{ | ||
std::string expression_string = "clamp(-1.0,sin(2 * pi * x) + cos(x / 2 * pi),+1.0)"; | ||
T x; | ||
exprtk::symbol_table<T> symbol_table; | ||
symbol_table.add_variable("x",x); | ||
symbol_table.add_constants(); | ||
|
||
exprtk::expression<T> expression; | ||
expression.register_symbol_table(symbol_table); | ||
|
||
exprtk::parser<T> parser; | ||
parser.compile(expression_string,expression); | ||
|
||
for (x = T(-5.0); x <= T(+5.0); x += 0.001) | ||
{ | ||
T y = expression.value(); | ||
printf("%19.15f\t%19.15f\n",x,y); | ||
} | ||
} | ||
|
||
int main() | ||
{ | ||
trig_function<double>(); | ||
return 0; | ||
} |
Oops, something went wrong.