How can solve this first order ODE using ODE45? I used the function but I don't get what I want

1 次查看(过去 30 天)
dt/dx = 1+4.5(1-X)/ 3.5(1-X)
tspan= [0 10];
x0 = 0;
fun = (1+4.5*(1-x)/3.5*(1-x));
[t,x] = ode45(@(t,x)(1+4.5*(1-x)/3.5*(1-x)),tspan,x0);
plot(t,x,'o-')
xlabel('Time (hr)')
ylabel('Conversion')
title(' Time Vs Conversion)
legend('Conversion')
ylim([0 1.1])

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by