<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: parameter estimation in systems of ordinary differential equations in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799381#M39314</link>
    <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;I was also suspicious of the equations. However, I have consulted the literature and they are correct.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great. Please provide the reference to the literature that you consulted. The paper, article, or blog post will tell us what problem you are trying to solve, and we might be able to find the source of your problem.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Mar 2022 16:42:28 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2022-03-01T16:42:28Z</dc:date>
    <item>
      <title>parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799036#M39299</link>
      <description>&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Hey guys. I'm trying to estimate parameters in a system of ordinary differential equations.
Here is the code I wrote (I know, is a disaster), with the error messages. Can anyone tell me how to fix the code?&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;title 'ODE BATALIM';&lt;BR /&gt;data BATALIM;&lt;BR /&gt;input&amp;nbsp; &amp;nbsp; &amp;nbsp;hour V&amp;nbsp; &amp;nbsp;CELL&amp;nbsp; &amp;nbsp; S&amp;nbsp; &amp;nbsp; &amp;nbsp;P;&lt;BR /&gt;datalines;&lt;BR /&gt;0.0 1.5 61.64 0. 30.39&lt;BR /&gt;1.0 2.2 34. 43. 31.18&lt;BR /&gt;2.0 2.9 36.34 56.06 35.95&lt;BR /&gt;3.0 3.6 21.92 66.29 38.87&lt;BR /&gt;4.0 4.3 17.75 69.12 42.31&lt;BR /&gt;5.0 5.0 17.01 70.14 44.17&lt;BR /&gt;;&lt;BR /&gt;proc model data=BATALIM;&lt;BR /&gt;dependent&amp;nbsp; &amp;nbsp;V&amp;nbsp; &amp;nbsp; CELL&amp;nbsp; &amp;nbsp;S&amp;nbsp; &amp;nbsp; P;&lt;/P&gt;&lt;P&gt;parms&amp;nbsp; &amp;nbsp;Fa&amp;nbsp; &amp;nbsp;mimax&amp;nbsp; &amp;nbsp;Ks&amp;nbsp; &amp;nbsp;Ki&amp;nbsp; &amp;nbsp;Pmax&amp;nbsp; &amp;nbsp;CELLmax&amp;nbsp; &amp;nbsp;n&amp;nbsp; &amp;nbsp; m;&lt;BR /&gt;&lt;BR /&gt;/*Next I try to provide the initial conditions of the differential equations*/&lt;BR /&gt;&lt;BR /&gt;if (hour=0) then&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; do;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;V=1.5; CELL=61.64; S=0; P=30.39;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;end;&lt;BR /&gt;else&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; do;&lt;BR /&gt;/*The system of differential equations is described below*/&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; dert.V = Fa;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; dert.CELL = (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLXmax)**m)*CELL - Fa*CELL/V;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dert.S = Fa*(213-S)/V - (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLmax)**m)*CELL/0.017;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;dert.P = (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLmax)**m)*CELL*24.94 - Fa*P/V;&lt;BR /&gt;end;&lt;BR /&gt;&lt;BR /&gt;/*&lt;/P&gt;&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Then I try to insert the initial values ​​of the parameters and get the fitted equations...&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;*/&lt;BR /&gt;&lt;BR /&gt;fit V start=(Fa 0.5) / time=hour;&lt;BR /&gt;fit CELL start=(mimax 0.01 Ks=2 Ki=5 Pmax=40 n=2 CELLmax= 60 m=2) / time=hour;&lt;BR /&gt;fit S start=(Fa 0.5 mimax 0.01 Ks=2 Ki=5 Pmax=40 n=2 CELLmax= 60 m=2)/ time=hour;&lt;BR /&gt;fit P start=(mimax 0.01 Ks=2 Ki=5 Pmax=40 n=2 CELLmax= 60 m=2)/ time=hour;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Error messages&lt;/P&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.CELL at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.S at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.P at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;NOTE: At OLS Iteration 0 CONVERGE=0.001 Criteria Met.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.CELL at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.S at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.P at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.CELL at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.S at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;WARNING: Missing value encountered for initial dert.P at time = 0. This variable is set to zero.&lt;/DIV&gt;&lt;DIV class=""&gt;And more...&lt;/DIV&gt;</description>
      <pubDate>Mon, 28 Feb 2022 00:27:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799036#M39299</guid>
      <dc:creator>MarceloLeite</dc:creator>
      <dc:date>2022-02-28T00:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799144#M39301</link>
      <description>&lt;P&gt;I am probably answering the wrong question here, but I noticed that the derivative of CELL at hour=0 is, in turn, equal to zero.&amp;nbsp; That may be leading to the missing values. Looking at the example on fitting systems of ODEs in the PROC MODEL documentation, I see that it is set up to only calculate derivatives if 'time ne 0' and uses a quadratic solution for time=0.&amp;nbsp; I think that particular approach is designed to avoid the warnings that you are getting with your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The other issue is what you copied from the log - it appears that the process is "stuck" at hour=0, but I can't tell.&amp;nbsp; The repetitive nature makes me think that the same error is generated at each iteration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Given these you ,might want to reparameterize your system of equations, if at all possible.&amp;nbsp; The derivatives look unwieldy, so I suspect the partials with respect to the parameters may be even worse.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 15:23:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799144#M39301</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2022-02-28T15:23:28Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799162#M39302</link>
      <description>&lt;P&gt;I am not an expert on PROC MODEL, but I noticed two things:&lt;/P&gt;
&lt;P&gt;1. You use the parameter CELLXmax, which is not defined. Presumably, that is a typo and you meant CellMax.&lt;/P&gt;
&lt;P&gt;2. The parameter values for CellMax and PMax are less than the data values.&amp;nbsp; From the names, I assume that Cell &amp;lt; cellMax and P &amp;lt; PMax for all times? If so, change those initial parameter values:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;parm   Fa 0.5  mimax 0.01  Ks 2  Ki 5  
       Pmax 50  CELLmax 65  n 2   m 2;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;3. Do you need to add a BOUNDS statement? It seems like a lot of the parameters converge to large negative numbers. Check the model to see if it constrains any parameters.&lt;/P&gt;
&lt;P&gt;4. I don't think you need the START= options on the FIT statements, but I don't really know what you are trying to accomplish.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Sometimes getting something that runs is the first step to debugging other problems. Here is some code that runs, but it does not provide a good fit to the data. I encourage you to check the ODE formulas (are all the signs correct?).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'ODE BATALIM';
data BATALIM;
input     hour V   CELL    S     P;
datalines;
0.0 1.5 61.64 0. 30.39
1.0 2.2 34.   43. 31.18
2.0 2.9 36.34 56.06 35.95
3.0 3.6 21.92 66.29 38.87
4.0 4.3 17.75 69.12 42.31
5.0 5.0 17.01 70.14 44.17
;
proc model data=BATALIM plots=none;
dependent V 1.5 CELL 61.64 S 0. P 30.39;

parm   Fa 0.5  mimax 0.01  Ks 2  Ki 5  
       Pmax 50  CELLmax 65  n 2   m 2;
/* do you need to add BOUNDS????? */
Bounds 45 &amp;lt; PMax , 65 &amp;lt; Cellmax;
if (hour=0) then
      do;
       V=1.5; CELL=61.64; S=0; P=30.39;
       end;
else
      do;
/*The system of differential equations is described below*/
dert.V = Fa;
dert.CELL = (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLmax)**m)*CELL - Fa*CELL/V;
dert.S = Fa*(213-S)/V - (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLmax)**m)*CELL/0.017;
dert.P = (mimax*S/(Ks+S+S**2/Ki)*(1-P/Pmax)**n*(1-CELL/CELLmax)**m)*CELL*24.94 - Fa*P/V;
end;

fit V CELL S P / time=hour out=ModelOut;
run;

/* visualize the results */
data results;
merge BATALIM(rename=(V=VObs CELL=CellObs S=SObs P=Pobs)) ModelOut;
by hour;
run;
ods graphics/width=400px height=300px;
proc  sgplot data=results;
scatter x=Hour y=VObs;
series x=Hour y=V;
run;
proc  sgplot data=results;
scatter x=Hour y=CellObs;
series x=Hour y=Cell;
run;
proc  sgplot data=results;
scatter x=Hour y=SObs;
series x=Hour y=S;
run;
proc  sgplot data=results;
scatter x=Hour y=PObs;
series x=Hour y=P;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Feb 2022 16:14:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799162#M39302</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-02-28T16:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799209#M39306</link>
      <description>&lt;P&gt;Hello how are you?&lt;/P&gt;&lt;P&gt;First of all, thank you very much for your help.&lt;/P&gt;&lt;P&gt;I tried to write a code to estimate the parameters of a system of ordinary differential equations. The result was that mess you saw.&lt;/P&gt;&lt;P&gt;The parameter values&lt;/P&gt;&lt;P&gt;Fa 0.5&amp;nbsp; mimax 0.01&amp;nbsp; Ks 2&amp;nbsp; Ki 5&amp;nbsp;&amp;nbsp;Pmax 50&amp;nbsp; CELLmax 65&amp;nbsp; n 2&amp;nbsp;&amp;nbsp; m 2&lt;/P&gt;&lt;P&gt;they are only initial estimates, since the estimation method is iterative. Pmax is expected to be close to the largest value of P in the dataset (slightly larger or slightly smaller). The same goes for CELLmax.&lt;/P&gt;&lt;P&gt;I used a system of equations taken from a master's thesis. Perhaps the author made a typo. I will check them by consulting the original source.&lt;/P&gt;&lt;P&gt;Thanks for writing and sending me code that works!&lt;/P&gt;</description>
      <pubDate>Mon, 28 Feb 2022 20:58:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799209#M39306</guid>
      <dc:creator>MarceloLeite</dc:creator>
      <dc:date>2022-02-28T20:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799370#M39312</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hello Steve, how are you? Thanks for responding to my help request.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"I am probably answering the wrong question here, but I noticed that the derivative of CELL at hour=0 is, in turn, equal to zero.&amp;nbsp; That may be leading to the missing values... I see that it is set up to only calculate derivatives if 'time ne 0' ..."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;This is a problem. In various physical phenomena dy/dt (x = 0) =0.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"The other issue is what you copied from the log - it appears that the process is "stuck" at hour=0, but I can't tell.&amp;nbsp; The repetitive nature makes me think that the same error is generated at each iteration."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;I agree with you. The problem is that I can't fix it.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"Given these you ,might want to reparameterize your system of equations, if at all possible.&amp;nbsp; The derivatives look unwieldy, so I suspect the partials with respect to the parameters may be even worse."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;I was also suspicious of the equations. However, I have consulted the literature and they are correct. I've tried everything here and I don't know how to solve it.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;I will try to find a SAS code for solving EDOS systems that works and test it with my data.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 16:28:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799370#M39312</guid>
      <dc:creator>MarceloLeite</dc:creator>
      <dc:date>2022-03-01T16:28:57Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799377#M39313</link>
      <description>&lt;P&gt;I'd like to add a bit more perspective to the comments from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;that I think might assist as you debug this program.&lt;/P&gt;
&lt;P&gt;If you take the program as supplied by&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;but make the following modifications:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Remove the BOUNDS statement&lt;/LI&gt;
&lt;LI&gt;Set the value of PMAX to 40 (as in the original code)&lt;/LI&gt;
&lt;LI&gt;Set the value of CELLMAX to 60 (as in the original code)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Then you will receive exactly the same error ("Missing value encountered for intial dert.CELL at time = 0..." And so on.) I'm making an educated guess here (I do not know much about PROC MODEL) but I am quite certain this is the reason:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;notes, the values of CELL and P in the data exceed the values of the parameters CELLMAX and PMAX. In the most general case, this need not necessarily be a problem. (For example, a measured value might exceed a theoretical maximum because of random error during the measurement process.) BUT in your case this is almost certainly a problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To see why, notice the structure of the derivative equations (for example, dert.CELL). The equation contains the term "(1 - P/Pmax)**n". If P&amp;gt;Pmax, then the term inside the parentheses is negative. This is OK when n=2 exactly (as you specify for the initial value of the parameter). But this is not defined when, say, n=2.1. This latter fact is the reason for the error. For a nonlinear least squares problem, the derivatives of the objective function with respect to the parameters (these are computed internally by PROC MODEL) must be well-defined in an open region. For your case, the derivatives are defined only at a point (n=0).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Depending on the application, you might consider fixing the values of the parameters m and n.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 16:36:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799377#M39313</guid>
      <dc:creator>clayt85</dc:creator>
      <dc:date>2022-03-01T16:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799381#M39314</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;I was also suspicious of the equations. However, I have consulted the literature and they are correct.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great. Please provide the reference to the literature that you consulted. The paper, article, or blog post will tell us what problem you are trying to solve, and we might be able to find the source of your problem.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 16:42:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799381#M39314</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-03-01T16:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799440#M39326</link>
      <description>&lt;PRE class=""&gt;&lt;SPAN class=""&gt;Hello. I found your remarks interesting. &lt;BR /&gt;However, I did what you suggested, but fitting the curves to the experimental data remained unacceptable...&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Mar 2022 19:53:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799440#M39326</guid>
      <dc:creator>MarceloLeite</dc:creator>
      <dc:date>2022-03-01T19:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799443#M39327</link>
      <description>&lt;P&gt;Hi Rick!&lt;/P&gt;&lt;P&gt;The literature I am consulting is in Portuguese. In addition, it is very long, as it is a master's thesis. However, I have an article (unfortunately, also in Portuguese) with only 15 pages that portrays exactly what I want to do: simulate fermentation processes, both in batch and fed batch. If you want, I can send it. I'll understand if you don't want to.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 20:16:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799443#M39327</guid>
      <dc:creator>MarceloLeite</dc:creator>
      <dc:date>2022-03-01T20:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: parameter estimation in systems of ordinary differential equations</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799446#M39328</link>
      <description>&lt;P&gt;Unfortunately, I would not be able to understand it. I wish you good luck in solving your problem.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Mar 2022 20:27:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/parameter-estimation-in-systems-of-ordinary-differential/m-p/799446#M39328</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-03-01T20:27:31Z</dc:date>
    </item>
  </channel>
</rss>

