how to make a function of this system
조회 수: 1 (최근 30일)
이전 댓글 표시
how do I make a function of this ?
댓글 수: 0
답변 (1개)
Stephan
2021년 5월 16일
syms a b y1(t) y2(t)
ode(1,1) = diff(y1,t,2) == a*y2 - cos(diff(y1,t));
ode(2,1) = diff(y2,t) == b*y1 + cos(t)
[V,S] = odeToVectorField(ode)
odeFun = matlabFunction(V,'vars',{'t','Y','a','b'})
tspan = [0 1];
yInit = [5 0 1];
a = 1;
b = 2;
[t,y] = ode45(@(t,Y)odeFun(t,Y,a,b), tspan, yInit);
plot(t,y)
댓글 수: 5
참고 항목
카테고리
Help Center 및 File Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!