Eleftherios
Followers: 0 Following: 0
Feeds
提问
Matlab doesn run the program , says at the editor 'input argument might be unused ' for t
function dxdt = odefun(t, x) dxdt = zeros(3,1); dxdt(1) = - (8/3)*x(1) + x(2)*x(3); dxdt(2) = - 10*x(2) + 10*x(3); dxdt(3) =...
2 years 前 | 2 个回答 | 0
2
个回答提问
'Matlab says that the problem is at (t), i want to use ode45
function dxdt = odefun (t,x) dxdt = zeros(3,1); dxdt(1)= -(8/3)*x(1)+x(2)*x(3); dxdt(2)= -10*x(2)+10*x(3); dxdt(3)= -x(3) -x...
2 years 前 | 2 个回答 | 0
2
个回答已回答
code will not run, but gives no error message
function dxdt = odefun (t,x) dxdt = zeros(3,1); dxdt(1)= -(8/3)*x(1)+x(2)*x(3); dxdt(2)= -10*x(2)+10*x(3); dxdt(3)= -x(3) -x...
code will not run, but gives no error message
function dxdt = odefun (t,x) dxdt = zeros(3,1); dxdt(1)= -(8/3)*x(1)+x(2)*x(3); dxdt(2)= -10*x(2)+10*x(3); dxdt(3)= -x(3) -x...
2 years 前 | 0