Feeds
질문
plz. help to convert this fortran iv program into matlab programm .I wrote the code for subroutine.
DIMENSION Y(6),DY(6),ETAEND(4),TEST(4) DOUBLE PRECISION Y,DY,H,ETA,X,B EXTERNAL DIFF COMMON B 1 READ (5,101) H,X,B,DE...
대략 12년 전 | 답변 수: 0 | 0
0
답변질문
while running this code i am unable to get y (1) ,y(2) and y(3)values.y(1) is coming similar to value of indepent variable and y(2),y(3) is coming 1 &0 resp.Plz. guide where am i getting wrong. thnx
function dydt = ode5(t,y) dydt = zeros(3,1); % a column vector dydt(1) = y(2); dydt(2) = y(3); dydt(3) = (-3.06091)*((y(...
대략 12년 전 | 답변 수: 1 | 0
