我正在尝试odeint
在一个类中使用(即用于求解微分方程的库),但我不能。我真的需要把它放在一个类中,这样我就可以控制我的项目。这是我得到的错误error C3867: 'robot::sys': function call missing argument list; use '&robot::sys' to create a pointer to member
这是我的代码
#include <iostream>
#include <boost/numeric/odeint.hpp>
using namespace std;
using namespace boost::numeric::odeint;
/* The type of container used to hold the state vector */
typedef std::vector< double > state_type;
class robot
{
double g, dt, t;
runge_kutta_dopri5<state_type> stepper;
public:
state_type x;
robot() : x(2)
{
x[0] = 1.0;
x[1] = 0.0;
t = 0;
g = 0.15;
dt = 0.1;
}
void move();
void sys(const state_type &x, state_type &dx, double t);
};
void robot::move()
{
stepper.do_step(sys , x , t, dt );
t += dt;
}
void robot::sys( const state_type &x , state_type &dx , double t )
{
dx[0] = x[1];
dx[1] = -x[0] - g*x[1];
}
int main(int argc, char **argv)
{
robot Robo;
for ( size_t i(0); i < 100; ++i){
Robo.move();
}
return 0;
}
当我尝试错误消息中建议的解决方案时,我收到另一个错误,即
....\odeint\stepper\base\explicit_error_stepper_fsal_base.hpp(279): error C2064: term does not evaluate to a function taking 3 arguments