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 Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by