Hello,
I have a ODE and need to compute the "exact" time and values of y at y(2)=0 and I'm using ode45 and 'Events'.
When I run my function, I get the error message: 'error using events. Not enough input variables.'
The part of my code:
options=['RelTol',1e2*AbsTol,'AbsTol',AbsTol*ones(1,length(condIni))...
,'Refine',8,'Events',seccio];
[T,Y,Te,Ye,Ie] = ode45(funRTBP,incT,condIni,options );
And my events function:
function [value,isterminal,direction] = seccio(t,y)
value = y(2);
direction = 0;
isterminal = 1;
end
AbsTol and condIni are correctly defined.
Thanks for your help.

 採用された回答

Walter Roberson
Walter Roberson 2015 年 11 月 30 日

0 投票

options = odeset('RelTol', 1e2*AbsTol, 'AbsTol', AbsTol*ones(1,length(condIni)), ...
'Refine', 8, 'Events', @seccio);

3 件のコメント

Felix Lauwaert
Felix Lauwaert 2015 年 11 月 30 日
Error using horzcat The following error occurred converting from char to function_handle: Error using function_handle Too many output arguments.
Walter Roberson
Walter Roberson 2015 年 12 月 1 日
I think I will need to see more of your code.
Did you notice that I changed from [] around the options to odeset() around the options?
Felix Lauwaert
Felix Lauwaert 2015 年 12 月 1 日
I hadn't seen it, now it works! Thank you vey much.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by