我有以下 odeint 程序:
#include <boost/array.hpp>
#include <boost/numeric/odeint.hpp>
using namespace std;
typedef boost::array< double , 1 > state_type;
void eqsystem(const state_type &x, state_type &dxdt, double t) {
dxdt[0] = 3;
}
void write_system( const state_type &x , const double t ) {
cout << t << '\t' << x[0] << endl;
}
int main(){
double t0=0, t1=100;
double tstep0=0.01;
state_type x = {{ 0 }};
cout<<"t\tValue"<<endl;
boost::numeric::odeint::integrate( eqsystem , x , t0 , t1 , tstep0 , write_system );
}
每次t
都是 10 的倍数,我想设置x[0]=0.1
.
也就是说,我想要一个重复的 delta 函数。
或者,如果我可以让 delta 函数出现在有限数量的时间点,我将能够近似递归。
不幸的是,我无法在 odeint 中找到 delta 函数的文档。有谁知道如何实现这一目标?