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?
$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
ordinary-differential-equations matlab mathematical-modeling
$endgroup$
add a comment |
$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
ordinary-differential-equations matlab mathematical-modeling
$endgroup$
$begingroup$
Matlab has a very comprehensive help with several examples. I urge you to check it.
$endgroup$
– Jon
Mar 25 at 11:06
add a comment |
$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
ordinary-differential-equations matlab mathematical-modeling
$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
ordinary-differential-equations matlab mathematical-modeling
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
add a comment |
$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
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Your time vector likely has too large steps for solver. Try replace
1:200
with
linspace(0,0.125,256)
$endgroup$
$begingroup$
thank you for the answer.
$endgroup$
– sam_rox
Mar 25 at 13:07
add a comment |
$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.
$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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
$begingroup$
Your time vector likely has too large steps for solver. Try replace
1:200
with
linspace(0,0.125,256)
$endgroup$
$begingroup$
thank you for the answer.
$endgroup$
– sam_rox
Mar 25 at 13:07
add a comment |
$begingroup$
Your time vector likely has too large steps for solver. Try replace
1:200
with
linspace(0,0.125,256)
$endgroup$
$begingroup$
thank you for the answer.
$endgroup$
– sam_rox
Mar 25 at 13:07
add a comment |
$begingroup$
Your time vector likely has too large steps for solver. Try replace
1:200
with
linspace(0,0.125,256)
$endgroup$
Your time vector likely has too large steps for solver. Try replace
1:200
with
linspace(0,0.125,256)
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
add a comment |
$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
add a comment |
$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.
$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
add a comment |
$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.
$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
add a comment |
$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.
$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.
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
$begingroup$
Matlab has a very comprehensive help with several examples. I urge you to check it.
$endgroup$
– Jon
Mar 25 at 11:06