Abed Alnaif in MATLAB Answers
最後のアクティビティ: 2019 年 12 月 6 日

Hello, I'm having a hard time restricting output times when calling simfunctions. Is there a way to do this? I thought that the 't_output' argument would do this, but it appears that this argument only specifies certain output times that should be included (see example below). Is there a way to restrict the output times to only certain specified times? Thank you, Abed sbioloadproject('insulindemo', 'm1'); normSim = createSimFunction(m1,{},{'[Plasma Glu Conc]','[Plasma Ins Conc]'},'Dose'); singleMeal = sbioselect(m1,'Name','Single Meal'); mealTable = getTable(singleMeal); tOutput = 23.99; tStop = 24; simData = normSim([],tStop,mealTable,tOutput); simData.Time % can we restrict output times to only 23.99?
Meric Ovacik in MATLAB Answers
最後のアクティビティ: 2013 年 10 月 11 日

I used fit data task and then tried to simulate the estimated parameters with simulate data task. The outputs are different. I played with different simulation setting options and found out that OutputTimes option changes my output (significantly). I also created a separate ode function file and simulate the same model; output of this file matched fit data task's output. Long story short, I cannot duplicate the results from fit data task with simulate data task in Simbiology. Any suggestion would be appreciated.