- use three separate Repeat Doses. One for day 1, one for day 8, one for day 15. Then apply all three doses together in your simulation. This would be the best solution if you want to repeat the Q3/4W beyond 28 days, e.g. the 15 cycles you describe
- use a single Schedule Dose and have a line for each dose. You could do this manually but that would be tedious for 15 cycles. You can make your life easier by click on "Editor" (circled in the attached screenshot) and give entries in MATLAB code for "Time", "Amount" and "Rate" (leave Rate empty if there is no associated rate with the dose amount). E.g.
How to change dose intervals or activate/deactivate dose during simulations in SimBiology?
4 次查看(过去 30 天)
显示 更早的评论
I'm trying to simulate a Q3/4W dose regimen which administers a drug three times per 28-day treatment cycle. That is, I want a dose to be administered on day 1, 8, and 15 during each 28-day cycle for 15 cycles, so the dose intervals are not the same. Is it possible to change dose intervals during the simulation or deacctivate the dose after day 15 (in the first cycle) and reactivate it on day 1 for the second cycle? What is the best way to do it? Thank you!
0 个评论
采纳的回答
Sietse Braakman
2020-5-18
Hi Hanwen,
If I understand you correctly, you could follow one of two routes:
time = repmat([1 8 15],1,15)
amount = repmat([100 200 300],1,15) % assuming dose at t = 1 is 100, t=8 is 200, t = 15 is 300.
rate = repmat([200 400 600],1,15)
Option 2 is probably the preferred solution if you only want a single dose object to deal with (as opposed to the 3 repeat doses from option 1.
更多回答(0 个)
社区
更多回答在 SimBiology Community
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Biotech and Pharmaceutical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!