How to print ODE45 results into a table with specific time periods

4 次查看(过去 30 天)
Hi I am working on a matlab program that solves a few differential equations to find the results of a heat transfer problem.
I have the differential portion completed but I am having trouble printing out the data to a table
options= odeset('RelTol',1e-6,'AbsTol',[1e-6 1e-6]); [t,M]= ode45(@dMdt_project4_66,tspan,initialvalues,options);
where dt= 0.1; dmax=70; dmin= 0; tspan= dmin:dt:dmax;
I want to print the results every second into a table. Any suggestions? ODE45 help doesnt explain.
Thank you

回答(1 个)

Star Strider
Star Strider 2014-4-5
编辑:Star Strider 2014-4-5
With your tspan, if you define ‘tp’ as the times you want to plot and ‘Mp’ as the ‘M’ values you want to plot:
tp = tspan(1:10:end);
Mp = M(1:10:end);

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by