Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Use integrated data to define rules in SimBiology Toolbox
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello,
I want to try the following thing, define a model, integrate some data and define a rule how to use the data to change parameters.
This is how I can currently access to data:
Mobj = sbiomodel('testmodel');
cell=addcompartment(Mobj,'cell',1,'ConstantCapacity',0,'UserData',data);
addrule(Mobj,'cell=myInterpolation(''cell'',time)', 'repeatedAssignment');
The function myInterpolation then opens a mat file where it accesses the right data, does the interpolation according to the actual time point and handles back the new cell volume.
It would be much easier to link the data to the model and access it, however I don't know how to call the linked data in the addrule function.
Thx!
0 Kommentare
Antworten (2)
Pramod Kumar
am 15 Nov. 2011
Hi Sebastian,
There is no elegant way to store data on the model and be able to access it in a function that is used in a rule.
If the data is not too big you can hard code it in the rule function. to see an example look at insulindemo.m. This demo uses functions EndogenousGlucoseProduction and GlucoseAppearanceRate in repeated assignment rules. each of these functions have the data hard coded. They do an interpolation to compute the data at a given time point.
0 Kommentare
Diese Frage ist geschlossen.
Communitys
Weitere Antworten in SimBiology Community
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!