how to implement without using "function-end" command?
1 次查看(过去 30 天)
显示 更早的评论
I'll start with an example. All the codes are from this website, http://12000.org/my_notes/matlab_ODE/
I'm trying to figure out how to use ode45
function first_oder_ode
t=0:0.001:5; % time scalex
initial_x=0;
[t,x]=ode45( @rhs, t, initial_x);
plot(t,x);
xlabel('t'); ylabel('x');
function dxdt=rhs(t,x)
dxdt = 3*exp(-t);
end
end
Now I want to avoid using
function
end
Because I wanna see what's inside the function in the work space.
then I can simply write like
f=@(t,x)3*exp(-t)+x; %%%define first order ode
t=0:0.001:5; %%%time scalex
x_initial=0; %%%x initial condition
[t,x]=ode45(f,t,x_initial); %%%solving ODE
plot(t,x);
This is easy one for getting numerical solution for 1st order ODE
The problem is, applying this into ODE system.
The Matlab code is (it's already in the website)
function second_oder_ode
% SOLVE d2x/dt2+5 dx/dt - 4 x = sin(10 t)
% initial conditions: x(0) = 0, x'(0)=0
t=0:0.001:3; % time scale
initial_x = 0;
initial_dxdt = 0;
[t,x]=ode45( @rhs, t, [initial_x initial_dxdt] );
plot(t,x(:,1));
xlabel('t'); ylabel('x');
function dxdt=rhs(t,x)
dxdt_1 = x(2);
dxdt_2 = -5*x(2) + 4*x(1) + sin(10*t);
dxdt=[dxdt_1; dxdt_2];
end
end
How do I write this in another way without using "function - end"? is it possible?
1 个评论
Steven Lord
2016-3-13
Rather than making the outer function into a script, I recommend giving it some output arguments. This way you don't clutter the caller's workspace with temporary variables that are only needed to help the code compute the variables in which you're interested.
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!