MATLAB: Ode45 out matrix dimension error!!

ode45

function [ dot ] = Untitled2( t,var )
dot=[var(1); var(2)*9.81*-1/0.2];
end
The output from workspace
instead of 45*2 and t 45*1

Best Answer

Please show your call to ode45.
I suspect you used
[s, t] = ode45(.....)
instead of
[t, s] = ode45(.....)