I am trying to write this function for ode. But it always gives me an error as not enough input arguments. Here is my code associated:
조회 수: 4 (최근 30일)
이전 댓글 표시
I am trying to write this function for ode. But it always gives me an error as not enough input arguments. Here is my code associated:
function dxdt = odefcn(x,a)
dxdt = zeros(3,1);
dxdt(1) = x(2);
dxdt(2) = x(3);
dxdt(3) =-a*x(3)+x(2)-x(1);
end
댓글 수: 0
채택된 답변
Walter Roberson
2017년 9월 2일
Do not use
ode45( odefcn, .....)
Use
ode45( @odefcn, .....)
댓글 수: 5
Walter Roberson
2017년 9월 2일
a=2
tspan = [0 5];
X0 = ones(1,3);
[t,x] = ode45(@(t,x) odefcn(x,a), tspan, X0);
figure;
plot(t,x);
grid on;
with
function dxdt = odefcn(x,a)
dxdt = zeros(3,1);
dxdt(1) = x(2);
dxdt(2) = x(3);
dxdt(3) =-a*x(3)+x(2)-x(1);
end
추가 답변 (0개)
참고 항목
카테고리
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!