Help: numerical solution for first order differential (OD) equations
이전 댓글 표시
I need some guidance regarding numerical ordinary differential equation
I have nine simultaneous first order differential (OD) equations which can be combinedly written as: dY/dt = A*Y + b where Y is a vector consisting of 9 terms and A is a matrix of size 9,3.
Can someone suggest me how should I start?
The paper that, I am looking at, briefly explains the procedure as: “The problem can be analytically without further simplification with the use of Matlab built-in function of matrix left division (\) and matrix power (expm 1) “ Regards, DK
댓글 수: 1
Azzi Abdelmalek
2013년 9월 15일
If Y is 9x1 array and A is 9x3 array, how can you do A*Y ?
답변 (1개)
Azzi Abdelmalek
2013년 9월 15일
A should be a 9x9 array
write and save this function as myeq.m
function dY=myeq(t,Y)
A=randi(9,9,9) ; % Example
b=1;
dY=zeros(9,1) ;
dY = A*Y + b;
Then call it
y0=zeros(9,1)% Initial conditions
tspan=[0 10];
[t,y]=ode45(@myeq2,tspan,y0)
댓글 수: 1
Azzi Abdelmalek
2013년 9월 16일
[ Dushyant commented]
Thanks.
Sorry, I mistakenly wrote wrong dimension for A.
Regards, Dushyant
카테고리
도움말 센터 및 File Exchange에서 Common Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!