作者cckh ()
站内Programming
标题[问题] Use my own ODE solver in Matlab?
时间Mon Mar 25 07:30:42 2013
I have a quick question to ask.
In Matlab when solving ODE we use ode45, ode23, etc based on different needs,
by using [t,x] = ode45('sir', [0 10], [1000 1 0], options);
where my function is called 'sir' in this case.
However, is there way to use my own solver instead of standard solvers
provided by Matlab? For example, suppose my ODE solver is called
mySolver.m
When I use [t,x] = mySolver('sir', [0 10], [1000 1 0], options);
it shows the following error message:
Undefined function or method 'odearguments' for input arguments of type
'struct'.
But I already added the path where mySolver.m is located.
Can anyone help me solve this problem? Thank you very much.
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 50.192.47.134
※ cckh:转录至看板 MATLAB 03/25 07:32