Differential equation in matlab The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Stochastic predator-preymatlab differential equationSolving 2nd order ODE with 2 independent parameters(over finite intervals), with bounds on solutionAnalytic solution to the one-compartment modelMatlab differential equation verificationIncluding a time delay term for a differential equationFinding parameters using two data sets for the same ODE systemmass balance from a system of nonlinear differential equationsDeciding the parameter value in a ODE systemHow can I solve/integerate the One-To-One kinetic binding model system of differential equations analytically?

Can withdrawing asylum be illegal?

What information about me do stores get via my credit card?

Did God make two great lights or did He make the great light two?

Road tyres vs "Street" tyres for charity ride on MTB Tandem

Semisimplicity of the category of coherent sheaves?

Why is Captain Marvel translated as male in Portugal?

Do working physicists consider Newtonian mechanics to be "falsified"?

What does the torsion-free condition for a connection mean in terms of its horizontal bundle?

Can smartphones with the same camera sensor have different image quality?

Who or what is the being for whom Being is a question for Heidegger?

How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?

Wall plug outlet change

Why does this iterative way of solving of equation work?

Simulating Exploding Dice

How to pronounce 1ターン?

Typeface like Times New Roman but with "tied" percent sign

How did passengers keep warm on sail ships?

How should I replace vector<uint8_t>::const_iterator in an API?

Can the prologue be the backstory of your main character?

Why is superheterodyning better than direct conversion?

What do you call a plan that's an alternative plan in case your initial plan fails?

I'm thinking of a number

Difference between "generating set" and free product?

University's motivation for having tenure-track positions



Differential equation in matlab



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Stochastic predator-preymatlab differential equationSolving 2nd order ODE with 2 independent parameters(over finite intervals), with bounds on solutionAnalytic solution to the one-compartment modelMatlab differential equation verificationIncluding a time delay term for a differential equationFinding parameters using two data sets for the same ODE systemmass balance from a system of nonlinear differential equationsDeciding the parameter value in a ODE systemHow can I solve/integerate the One-To-One kinetic binding model system of differential equations analytically?










1












$begingroup$


A pathogen population ($P(t)$) under the effect of a drug($A(t)$) is modelled as



$dPover dt=rP-E_maxA^nover C_50^n+A^nP$ and $A(t)$ is modelled as



$A(t)=Dover V(e^-k(t-t_0)-e^-k_a(t-t_0))$.



From literature I know the values of $D,V,t_0$(lag time), $k,k_a$. So, $A(t)$ can be obtained at the respective time points the ODE is run.
$r,E_max,n,C_50$ are also known.



I want to solve the ODE $dPover dt$ using ode45 of Matlab. (Without obtaining the analytical solution of $P(t)$ as this is only a simplified system and the original system cannot be solved analytically).



Can someone please let me know if the below code is right in solving $P(t)$. I am not sure about the way $A(t)$ is included into the ODE equation.



y0=10;
[t,y]=ode45(@Model,1:200,y0);

function s= Model(t,y)
r=0.4;
Emax=50;
n=1;
c_50=0.1;
k=0.25;
D=40;
V=6.6;
t0=1;
k_a=0.5;
s=zeros(1,1);
A=(D/V)*(exp(-k*(t-t0))-exp(-k_a*(t-t0)));
s(1)=r*y(1)-((Emax*(A^n))/((c_50^n)+(A^n)))*y(1);
end









share|cite|improve this question









$endgroup$











  • $begingroup$
    Matlab has a very comprehensive help with several examples. I urge you to check it.
    $endgroup$
    – Jon
    Mar 25 at 11:06















1












$begingroup$


A pathogen population ($P(t)$) under the effect of a drug($A(t)$) is modelled as



$dPover dt=rP-E_maxA^nover C_50^n+A^nP$ and $A(t)$ is modelled as



$A(t)=Dover V(e^-k(t-t_0)-e^-k_a(t-t_0))$.



From literature I know the values of $D,V,t_0$(lag time), $k,k_a$. So, $A(t)$ can be obtained at the respective time points the ODE is run.
$r,E_max,n,C_50$ are also known.



I want to solve the ODE $dPover dt$ using ode45 of Matlab. (Without obtaining the analytical solution of $P(t)$ as this is only a simplified system and the original system cannot be solved analytically).



Can someone please let me know if the below code is right in solving $P(t)$. I am not sure about the way $A(t)$ is included into the ODE equation.



y0=10;
[t,y]=ode45(@Model,1:200,y0);

function s= Model(t,y)
r=0.4;
Emax=50;
n=1;
c_50=0.1;
k=0.25;
D=40;
V=6.6;
t0=1;
k_a=0.5;
s=zeros(1,1);
A=(D/V)*(exp(-k*(t-t0))-exp(-k_a*(t-t0)));
s(1)=r*y(1)-((Emax*(A^n))/((c_50^n)+(A^n)))*y(1);
end









share|cite|improve this question









$endgroup$











  • $begingroup$
    Matlab has a very comprehensive help with several examples. I urge you to check it.
    $endgroup$
    – Jon
    Mar 25 at 11:06













1












1








1





$begingroup$


A pathogen population ($P(t)$) under the effect of a drug($A(t)$) is modelled as



$dPover dt=rP-E_maxA^nover C_50^n+A^nP$ and $A(t)$ is modelled as



$A(t)=Dover V(e^-k(t-t_0)-e^-k_a(t-t_0))$.



From literature I know the values of $D,V,t_0$(lag time), $k,k_a$. So, $A(t)$ can be obtained at the respective time points the ODE is run.
$r,E_max,n,C_50$ are also known.



I want to solve the ODE $dPover dt$ using ode45 of Matlab. (Without obtaining the analytical solution of $P(t)$ as this is only a simplified system and the original system cannot be solved analytically).



Can someone please let me know if the below code is right in solving $P(t)$. I am not sure about the way $A(t)$ is included into the ODE equation.



y0=10;
[t,y]=ode45(@Model,1:200,y0);

function s= Model(t,y)
r=0.4;
Emax=50;
n=1;
c_50=0.1;
k=0.25;
D=40;
V=6.6;
t0=1;
k_a=0.5;
s=zeros(1,1);
A=(D/V)*(exp(-k*(t-t0))-exp(-k_a*(t-t0)));
s(1)=r*y(1)-((Emax*(A^n))/((c_50^n)+(A^n)))*y(1);
end









share|cite|improve this question









$endgroup$




A pathogen population ($P(t)$) under the effect of a drug($A(t)$) is modelled as



$dPover dt=rP-E_maxA^nover C_50^n+A^nP$ and $A(t)$ is modelled as



$A(t)=Dover V(e^-k(t-t_0)-e^-k_a(t-t_0))$.



From literature I know the values of $D,V,t_0$(lag time), $k,k_a$. So, $A(t)$ can be obtained at the respective time points the ODE is run.
$r,E_max,n,C_50$ are also known.



I want to solve the ODE $dPover dt$ using ode45 of Matlab. (Without obtaining the analytical solution of $P(t)$ as this is only a simplified system and the original system cannot be solved analytically).



Can someone please let me know if the below code is right in solving $P(t)$. I am not sure about the way $A(t)$ is included into the ODE equation.



y0=10;
[t,y]=ode45(@Model,1:200,y0);

function s= Model(t,y)
r=0.4;
Emax=50;
n=1;
c_50=0.1;
k=0.25;
D=40;
V=6.6;
t0=1;
k_a=0.5;
s=zeros(1,1);
A=(D/V)*(exp(-k*(t-t0))-exp(-k_a*(t-t0)));
s(1)=r*y(1)-((Emax*(A^n))/((c_50^n)+(A^n)))*y(1);
end






ordinary-differential-equations matlab mathematical-modeling






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked Mar 25 at 10:17









sam_roxsam_rox

51821020




51821020











  • $begingroup$
    Matlab has a very comprehensive help with several examples. I urge you to check it.
    $endgroup$
    – Jon
    Mar 25 at 11:06
















  • $begingroup$
    Matlab has a very comprehensive help with several examples. I urge you to check it.
    $endgroup$
    – Jon
    Mar 25 at 11:06















$begingroup$
Matlab has a very comprehensive help with several examples. I urge you to check it.
$endgroup$
– Jon
Mar 25 at 11:06




$begingroup$
Matlab has a very comprehensive help with several examples. I urge you to check it.
$endgroup$
– Jon
Mar 25 at 11:06










2 Answers
2






active

oldest

votes


















1












$begingroup$

Your time vector likely has too large steps for solver. Try replace



1:200


with



linspace(0,0.125,256)


enter image description here






share|cite|improve this answer









$endgroup$












  • $begingroup$
    thank you for the answer.
    $endgroup$
    – sam_rox
    Mar 25 at 13:07


















0












$begingroup$

I copied your code to Octave (it runs most matlab code) and the results seem wrong, as the solution "explodes". This could be a precision in ode45. I attach the Wolfram Mathematica solution to the same problem. The solution decays to zero almost immediately.



enter image description here






share|cite|improve this answer









$endgroup$








  • 1




    $begingroup$
    It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
    $endgroup$
    – mathreadler
    Mar 25 at 12:00












Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3161601%2fdifferential-equation-in-matlab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









1












$begingroup$

Your time vector likely has too large steps for solver. Try replace



1:200


with



linspace(0,0.125,256)


enter image description here






share|cite|improve this answer









$endgroup$












  • $begingroup$
    thank you for the answer.
    $endgroup$
    – sam_rox
    Mar 25 at 13:07















1












$begingroup$

Your time vector likely has too large steps for solver. Try replace



1:200


with



linspace(0,0.125,256)


enter image description here






share|cite|improve this answer









$endgroup$












  • $begingroup$
    thank you for the answer.
    $endgroup$
    – sam_rox
    Mar 25 at 13:07













1












1








1





$begingroup$

Your time vector likely has too large steps for solver. Try replace



1:200


with



linspace(0,0.125,256)


enter image description here






share|cite|improve this answer









$endgroup$



Your time vector likely has too large steps for solver. Try replace



1:200


with



linspace(0,0.125,256)


enter image description here







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Mar 25 at 11:57









mathreadlermathreadler

15.5k72263




15.5k72263











  • $begingroup$
    thank you for the answer.
    $endgroup$
    – sam_rox
    Mar 25 at 13:07
















  • $begingroup$
    thank you for the answer.
    $endgroup$
    – sam_rox
    Mar 25 at 13:07















$begingroup$
thank you for the answer.
$endgroup$
– sam_rox
Mar 25 at 13:07




$begingroup$
thank you for the answer.
$endgroup$
– sam_rox
Mar 25 at 13:07











0












$begingroup$

I copied your code to Octave (it runs most matlab code) and the results seem wrong, as the solution "explodes". This could be a precision in ode45. I attach the Wolfram Mathematica solution to the same problem. The solution decays to zero almost immediately.



enter image description here






share|cite|improve this answer









$endgroup$








  • 1




    $begingroup$
    It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
    $endgroup$
    – mathreadler
    Mar 25 at 12:00
















0












$begingroup$

I copied your code to Octave (it runs most matlab code) and the results seem wrong, as the solution "explodes". This could be a precision in ode45. I attach the Wolfram Mathematica solution to the same problem. The solution decays to zero almost immediately.



enter image description here






share|cite|improve this answer









$endgroup$








  • 1




    $begingroup$
    It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
    $endgroup$
    – mathreadler
    Mar 25 at 12:00














0












0








0





$begingroup$

I copied your code to Octave (it runs most matlab code) and the results seem wrong, as the solution "explodes". This could be a precision in ode45. I attach the Wolfram Mathematica solution to the same problem. The solution decays to zero almost immediately.



enter image description here






share|cite|improve this answer









$endgroup$



I copied your code to Octave (it runs most matlab code) and the results seem wrong, as the solution "explodes". This could be a precision in ode45. I attach the Wolfram Mathematica solution to the same problem. The solution decays to zero almost immediately.



enter image description here







share|cite|improve this answer












share|cite|improve this answer



share|cite|improve this answer










answered Mar 25 at 11:12









PierreCarrePierreCarre

2,178215




2,178215







  • 1




    $begingroup$
    It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
    $endgroup$
    – mathreadler
    Mar 25 at 12:00













  • 1




    $begingroup$
    It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
    $endgroup$
    – mathreadler
    Mar 25 at 12:00








1




1




$begingroup$
It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
$endgroup$
– mathreadler
Mar 25 at 12:00





$begingroup$
It works just fine in Matlab if you just don't have too large delta t steps. 1:200 will give delta t of 1 everywhere which may be too large for many ODE solvers.
$endgroup$
– mathreadler
Mar 25 at 12:00


















draft saved

draft discarded
















































Thanks for contributing an answer to Mathematics Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

Use MathJax to format equations. MathJax reference.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3161601%2fdifferential-equation-in-matlab%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Lowndes Grove History Architecture References Navigation menu32°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661132°48′6″N 79°57′58″W / 32.80167°N 79.96611°W / 32.80167; -79.9661178002500"National Register Information System"Historic houses of South Carolina"Lowndes Grove""+32° 48' 6.00", −79° 57' 58.00""Lowndes Grove, Charleston County (260 St. Margaret St., Charleston)""Lowndes Grove"The Charleston ExpositionIt Happened in South Carolina"Lowndes Grove (House), Saint Margaret Street & Sixth Avenue, Charleston, Charleston County, SC(Photographs)"Plantations of the Carolina Low Countrye

random experiment with two different functions on unit interval Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Random variable and probability space notionsRandom Walk with EdgesFinding functions where the increase over a random interval is Poisson distributedNumber of days until dayCan an observed event in fact be of zero probability?Unit random processmodels of coins and uniform distributionHow to get the number of successes given $n$ trials , probability $P$ and a random variable $X$Absorbing Markov chain in a computer. Is “almost every” turned into always convergence in computer executions?Stopped random walk is not uniformly integrable

How should I support this large drywall patch? Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How do I cover large gaps in drywall?How do I keep drywall around a patch from crumbling?Can I glue a second layer of drywall?How to patch long strip on drywall?Large drywall patch: how to avoid bulging seams?Drywall Mesh Patch vs. Bulge? To remove or not to remove?How to fix this drywall job?Prep drywall before backsplashWhat's the best way to fix this horrible drywall patch job?Drywall patching using 3M Patch Plus Primer