Filter löschen
Filter löschen

How to find parameters for Simbiology ?

4 Ansichten (letzte 30 Tage)
Victor Kang
Victor Kang am 22 Nov. 2017
Beantwortet: Joe Myint am 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.

Antworten (1)

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

Communitys

Weitere Antworten in  SimBiology Community

Kategorien

Mehr zu Extend Modeling Environment finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!