symbolic computation in C++

前端 未结 3 1076
误落风尘
误落风尘 2021-02-07 13:04

I need to do analytical integration in C++. For example, I should integrate expressions like this: exp[I(x-y)], I is an imaginary number.

How c

3条回答
  •  时光取名叫无心
    2021-02-07 13:36

    A couple of days ago, I was searching for a symbolic math library like SymPy for C++, because I bedazzled by its speed comparing to Python or most of the other programming languages.

    I found Vienna Math Library, an awesome library with very modern syntax, and SymPy's features to the best of my knowledge. This library also has an integral function that can be used for your problem.

    It was good enough for solving IK (Inverse Kinematics) of 3 degrees of freedom articulated manipulator.

提交回复
热议问题