本文整理汇总了C++中Interpreter::Eval方法的典型用法代码示例。如果您正苦于以下问题:C++ Interpreter::Eval方法的具体用法?C++ Interpreter::Eval怎么用?C++ Interpreter::Eval使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Interpreter
的用法示例。
在下文中一共展示了Interpreter::Eval方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(void)
{
cout << "inkamath 0.8\n" << endl;
Interpreter<complex<double>> p;
for(;;)
{
string s;
cout << ">> ";
getline(cin,s);
if(s=="q") break; // quit interpreter
cout << p.Eval(s) << endl << endl;
}
return 0;
}
示例2: inkamath_test
void inkamath_test()
{
Interpreter<complex<double>> p;
queue<string> s;
s.push("[pi, e]");
s.push("A=[a a; a a]");
s.push("a=[1 2;3 4]");
s.push("A");
s.push("exp(x)_n=exp(x)_(n-1)+x^n/!n");
s.push("exp(1)");
s.push("cos(x)=(exp(i*x)+exp(-i*x))/2");
s.push("sin(x)=(exp(i*x)-exp(-i*x))/(2*i)");
s.push("sin(pi/6)");
while(!s.empty())
{
cout << ">> " << s.front() << endl;
if(s.front()=="q") break; // quit interpreter
cout << p.Eval(s.front()) << endl << endl;
s.pop();
}
}