Clear Filters
Clear Filters

How to find parameters for Simbiology ?

4 views (last 30 days)
Victor Kang
Victor Kang on 22 Nov 2017
Answered: Joe Myint on 22 Nov 2017
I am an iGEMer focus on modeling. But rather than building a model, it is finding parameters that trouble me most. How to find parameters quickly and efficiently? Is there any parameter database? Thanks a lot for your help.

Answers (1)

Joe Myint
Joe Myint on 22 Nov 2017
Hi Victor,
You can use sbioselect to find any model objects, including parameters.
Say you have a SimBiology model m1 in the workspace.
To find all the parameters:
allParameters = sbioselect(m1,'Type','parameter')
To find a parameter named p1:
p1 = sbioselect(m1,'Type','parameter','Name','p1')
To find several parameters:
params = sbioselect(m1,'Type','parameter','Name',{'p1','p2'})
Hope it helps, Joe

Communities

More Answers in the  SimBiology Community

Categories

Find more on Extend Modeling Environment in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!