Skip to content

Commit 047e12a

Browse files
author
Florian Augustin
committed
2 parents ddf939c + 1861f38 commit 047e12a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Getting Started with Model Debugger for SimBiology
22

3-
43
## Description
54
The Model Debugger for SimBiology is a MATLAB application that lets you analyze model responses, model structure, and expressions during model simulation.
65

@@ -14,17 +13,23 @@ See also the GettingStarted.mlx.
1413

1514
## Example
1615
% Load model
16+
1717
model = sbmlimport('lotka');
1818

1919
% Configure model for simulation
20+
2021
configset = getconfigset(model);
22+
2123
configset.SolverOptions.AbsoluteTolerance = 1e-6;
24+
2225
configset.SolverOptions.RelativeTolerance = 1e-6;
2326

2427
% Define dose
28+
2529
dose = sbiodose('dose for y1', 'TargetName', 'y1', 'Amount', 50);
2630

2731
% Start Model Debugger for SimBiology for model and dose
32+
2833
startSimBiologyDebugger(model, dose);
2934

3035
## System Requirements

0 commit comments

Comments
 (0)