Azzera filtri
Azzera filtri

How to find parameters for Simbiology ?

4 visualizzazioni (ultimi 30 giorni)
Victor Kang
Victor Kang il 22 Nov 2017
Risposto: Joe Myint il 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.

Risposte (1)

Joe Myint
Joe Myint il 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

Community

Più risposte nel  SimBiology Community

Categorie

Scopri di più su Extend Modeling Environment in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!