Skip to content

Commit

Permalink
Create demo.mod
Browse files Browse the repository at this point in the history
  • Loading branch information
vrognas committed Sep 5, 2024
1 parent 7719207 commit d29be8f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions test/demo.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
$PROBLEM For demo purposes only
$INPUT ID DV APGR TIME
$DATA d.csv IGNORE=@

$SUBROUTINES ADVAN1 TRANS1

$PK

A = THETA(1) ; Typical vale

IF (A == 0) THEN
B = A + 1E-4 * 3**2
ELSEIF (A =/ 0) THEN ; invalid operator
B = 0
ENDIF

$ERROR

Y = A / (EXP(ETA(1)) + EPS(1))

$THETA (-Inf, 0.1, Inf)
$OMEGA 0.01
$SIGMA 1
$ESTIMATION METHOD=1 INTERACTION MAXEVALS=9990 PRINT=2

0 comments on commit d29be8f

Please sign in to comment.