MATLAB: Using ODE solvers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T14:33:59Zhttp://stackoverflow.com/feeds/question/377406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/377406/matlab-using-ode-solvers1MATLAB: Using ODE solvers?blork2008-12-18T09:57:01Z2009-02-14T11:04:25Z
<p>This is a really basic question but this is the first time I've used MATLAB and I'm stuck.
I need to simulate a simple series RC network using 3 different numerical integration techniques. I think I understand how to use the ode solvers, but I have no idea how to enter the differential equation of the system. Do I need to do it via an m-file?</p>
<p>It's just a simple RC circuit in the form:</p>
<pre><code>RC dy(t)/dt + y(t) = u(t)
</code></pre>
<p>with zero initial conditions. I have the values for R, C the step length and the simulation time but I don't know how to use MATLAB particularly well.</p>
<p>Any help is much appreciated!</p>
http://stackoverflow.com/questions/377406/matlab-using-ode-solvers/377421#3774211Answer by Dan Vinton for MATLAB: Using ODE solvers?Dan Vinton2008-12-18T10:04:40Z2008-12-18T10:04:40Z<p><a href="http://www4.ncsu.edu/~mahaider/NCSU_RTG_Site/RTM_Matlab_Intro.pdf" rel="nofollow">The Official Matlab Crash Course</a> (PDF warning) has a section on solving ODEs, as well as a lot of other resources I found useful when starting Matlab.</p>
http://stackoverflow.com/questions/377406/matlab-using-ode-solvers/378293#3782933Answer by MatlabDoug for MATLAB: Using ODE solvers?MatlabDoug2008-12-18T15:56:19Z2008-12-18T16:02:59Z<p>You are going to need a function file that takes <em>t</em> and <em>y</em> as input and gives <em>dy</em> as output. It would be its own file with the following header.</p>
<pre><code>function dy = rigid(t,y)
</code></pre>
<p>Save it as rigid.m on the MATLAB path.</p>
<p>From there you would put in your differential equation. You now have a function. Here is a simple one:</p>
<pre><code>function dy = rigid(t,y)
dy = sin(t);
</code></pre>
<p>From the command line or a script, you need to drive this function through ODE45</p>
<pre><code>[T,Y] = ode45(@rigid,[0 2*pi],[0]);
</code></pre>
<p>This will give you your function (rigid.m) running from <strong>time 0</strong> through <strong>time 2*pi</strong> with an <strong>initial y of zero</strong>.</p>
<p>Plot this:</p>
<pre><code>plot(T,Y)
</code></pre>
<p><img src="http://blogs.mathworks.com/images/videos/Other%20Pics/SO%20ODE.jpg" alt="alt text" /></p>
<p>More of the MATLAB documentation is here:</p>
<p><a href="http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.html" rel="nofollow">http://www.mathworks.com/access/helpdesk/help/techdoc/ref/ode23tb.html</a></p>