2013-04-14 07:01:14 +00:00
|
|
|
/*
|
|
|
|
**************************************************************
|
|
|
|
* C++ Mathematical Expression Toolkit Library *
|
|
|
|
* *
|
|
|
|
* Simple Example 5 *
|
|
|
|
* 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>
|
|
|
|
struct myfunc : public exprtk::ifunction<T>
|
|
|
|
{
|
|
|
|
myfunc()
|
|
|
|
: exprtk::ifunction<T>(2)
|
|
|
|
{}
|
|
|
|
|
|
|
|
inline T operator()(const T& v1, const T& v2)
|
|
|
|
{
|
|
|
|
return T(1) + (v1 * v2) / T(3);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void custom_function()
|
|
|
|
{
|
|
|
|
typedef exprtk::expression<T> expression_t;
|
|
|
|
std::string expression_string = "myfunc(sin(x*pi),y/2)";
|
2013-07-28 11:35:06 +00:00
|
|
|
T x = T(1);
|
|
|
|
T y = T(2);
|
2013-04-14 07:01:14 +00:00
|
|
|
myfunc<T> mf;
|
|
|
|
|
|
|
|
exprtk::symbol_table<T> symbol_table;
|
|
|
|
symbol_table.add_variable("x",x);
|
|
|
|
symbol_table.add_variable("y",y);
|
|
|
|
symbol_table.add_function("myfunc",mf);
|
|
|
|
symbol_table.add_constants();
|
|
|
|
|
|
|
|
expression_t expression;
|
|
|
|
expression.register_symbol_table(symbol_table);
|
|
|
|
|
|
|
|
exprtk::parser<T> parser;
|
|
|
|
parser.compile(expression_string,expression);
|
|
|
|
|
|
|
|
T result = expression.value();
|
|
|
|
printf("Result: %10.5f\n",result);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
custom_function<double>();
|
|
|
|
return 0;
|
|
|
|
}
|