photo

Eleftherios


Last seen: más de 1 año hace Con actividad desde 2022

Followers: 0   Following: 0

Estadística

  • Thankful Level 1
  • First Answer

Ver insignias

Feeds

Ver por

Pregunta


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

más de 1 año hace | 2 respuestas | 0

2

respuestas

Pregunta


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

más de 1 año hace | 2 respuestas | 0

2

respuestas

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

más de 1 año hace | 0