How to pass extra parameters to ODE event function?

19 次查看(过去 30 天)
Hello All,
Are the any way to pass some extra parameters to ODE event? So my event also is a mathematical expression which include some system parameters.

采纳的回答

Torsten
Torsten 2023-2-3
In the same way as you pass parameters to other functions:
options = odeset('Events',@(t,y)myEventsFcn(t,y,params));
function [value,isterminal,direction] = myEventsFcn(t,y,params)
...
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by