Community Profile

photo

Eleftherios


Last seen: 1 year ago Active since 2022

Followers: 0   Following: 0

Statistics

  • Thankful Level 1
  • First Answer

View badges

Feeds

View by

Question


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

1 year ago | 2 answers | 0

2

answers

Question


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

1 year ago | 2 answers | 0

2

answers

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

1 year ago | 0