Ode45 not working

2 views (last 30 days)
Mo BO
Mo BO on 18 May 2016
Commented: Walter Roberson on 18 May 2016
function [ dot ] = Untitled2( t,var )
dot=[var(1),var(2)*9.81*-1/0.2];
end

Accepted Answer

Walter Roberson
Walter Roberson on 18 May 2016
dot=[var(1); var(2)*9.81*-1/0.2];
  2 Comments
Mo BO
Mo BO on 18 May 2016
Edited: Walter Roberson on 18 May 2016
it worked however the dimension of solutions matrix is inverted ?? s is supposed to be 45*2 and t 45*1
Walter Roberson
Walter Roberson on 18 May 2016
You posted a Question about this and I answered there.

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!