Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何合适的集成和微分算法,我可以通过 C++ 或 C 实现。只需参考名称即可。如果您愿意提供示例代码,我会对您的回答和解释感到非常满意。提前致谢。
您可以使用微积分 c++ 库。
它很容易使用。您可以将变量声明为Variable x="x",y="y";,将函数声明为Function f=sin(x)*sin(y);。
Variable x="x",y="y";
Function f=sin(x)*sin(y);
例如,您可以将其区分为 x 为 Function dfdx= f->get_partial_derivative(x);
Function dfdx= f->get_partial_derivative(x);