show/hide this revision's text 2 link goof

You are going to need a function file that takes t and y as input and gives dy as output. It would be its own file with the following header.

function dy = rigid(t,y)

Save it as rigid.m on the MATLAB path.

From there you would put in your differential equation. You now have a function. Here is a simple one:

function dy = rigid(t,y)

dy = sin(t);

From the command line or a script, you need to drive this function through ODE45

[T,Y] = ode45(@rigid,[0 2*pi],[0]);

This will give you your function (rigid.m) running from time 0 through time 2*pi with an initial y of zero.

Plot this:

plot(T,Y)

alt text

More of the MATLAB documentation is here:

[http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.html%5D%5B2%5D

[2]:

http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.htmlemphasized text

show/hide this revision's text 1

You are going to need a function file that takes t and y as input and gives dy as output. It would be its own file with the following header.

function dy = rigid(t,y)

Save it as rigid.m on the MATLAB path.

From there you would put in your differential equation. You now have a function. Here is a simple one:

function dy = rigid(t,y)

dy = sin(t);

From the command line or a script, you need to drive this function through ODE45

[T,Y] = ode45(@rigid,[0 2*pi],[0]);

This will give you your function (rigid.m) running from time 0 through time 2*pi with an initial y of zero.

Plot this:

plot(T,Y)

alt text

More of the MATLAB documentation is here:

[http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.html%5D%5B2%5D

[2]: http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.htmlemphasized text