How to find parameters for Simbiology ?

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)

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

Products

Asked:

on 22 Nov 2017

Answered:

on 22 Nov 2017

Community Treasure Hunt

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

Start Hunting!