Can I generate MATLAB code for a PK simulation built with SimBiology APP?

조회 수: 1 (최근 30일)
Wei Wang
Wei Wang 2020년 5월 5일
댓글: Wei Wang 2020년 5월 7일
Hi, all
I have built a PBPK model with SimBiology APP and now I want to know its equivalent MATLAB code. Can I generate the code in SimBiology?
Thanks for comment.
  댓글 수: 1
Wei Wang
Wei Wang 2020년 5월 5일
to more specify it, I want to know the code of one PK simulation program using this model. How can I deal with it?

댓글을 달려면 로그인하십시오.

답변 (1개)

Fulden Buyukozturk
Fulden Buyukozturk 2020년 5월 5일
Hi Wei,
If you right-click on the program on Model Analyzer and choose View program code, this will open the code for the program. Switch to MATLAB and you'll see the code on your editor.
Hope this helps.
Fulden
  댓글 수: 3
Fulden Buyukozturk
Fulden Buyukozturk 2020년 5월 6일
편집: Fulden Buyukozturk 2020년 5월 6일
Hi Wei,
In addition to the program code I mentioned above, when you build a model (for example when you create a dose) in the SimBiology App, you can view the equivalent MATLAB Code using the MATLAB Code Capture Tool. This will help capture the equivelant code needed for the dose schedule for example. Currently the best tools to generate MATLAB code for the modeling and simulation performed on the App is using the code capture tool and the program code i mentioned above.
For the doses question specifically, if you specified a dose schedule in the App, you can access those from the model in MATLAB. So you may not need to code the dose from scratch.
For example :
% Load model in SimBiology project
sbioloadproject('AntibacterialPKPD.sbproj', 'm1');
% Get the dose named 250 mg bid
myDose = getdose(m1, '250 mg bid')
% Change dose amount to 500
myDose.Amount = 500
% Simulate the model with the dose
data = sbiosimulate(m1, myDose)
% Plot results
sbioplot(data)
For more info on creating dose schedules programmatically, please see https://www.mathworks.com/help/simbio/ug/dose-object.html#buffx73
Fulden
Wei Wang
Wei Wang 2020년 5월 7일
Hi, Fulden,
Thanks for your help. I now find it.
Wang Wei

댓글을 달려면 로그인하십시오.

커뮤니티

더 많은 답변 보기:  SimBiology Community

카테고리

Help CenterFile Exchange에서 Scan Parameter Ranges에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by