How to find parameters for Simbiology ?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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.
0 Commenti
Risposte (1)
Joe Myint
il 22 Nov 2017
Hi Victor,
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
0 Commenti
Community
Più risposte nel SimBiology Community
Vedere anche
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!