fuzzy and ode system
显示 更早的评论
I have a system of ordinary differential equations (ODE) with some parameters (coefficients). I want to make fuzzy some of these coefficients.
What is the best way to do this in MATLAB?
3 个评论
Walter Roberson
2022-8-2
Fuzzy systems are typically piecewise defined, and might be differentiable between the breakpoints, but typically have discontinuous first or second derivatives.
As such, most fuzzy systems are not suitable for use with any of the ode*() routines, all of which require continuous first and second derivatives within any one call.
The way to approach it with ode45() or similar would be to use an event function to terminate the integration each time you passed between fuzzy sub-domains.
Torsten
2022-8-2
fateme zrbd
2022-8-3
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Fuzzy Logic Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

