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!

