photo

Eleftherios


Last seen: oltre un anno fa Attivo dal 2022

Followers: 0   Following: 0

Statistica

  • Thankful Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Domanda


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) =...

oltre un anno fa | 2 risposte | 0

2

risposte

Domanda


'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...

oltre un anno fa | 2 risposte | 0

2

risposte

Risposto
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...

oltre un anno fa | 0