Re: Multiple problems
From: alison@c255.ucsf.EDU (ABoeckmann)
Subject: Re: Multiple problems
Date: 2 Jan 1998 15:52:20 -0500
Each problem in the a multi-problem run can have one or more $TABLE records. With NONMEM IV there is a known bug. In a problem subsequent to the first, a user-defined variable (such as CL) is not "remembered" by NM-TRAN from the first problem's abbreviated code. The workaround is to save the variable(s) in the NONMEM common NMPRD4. The code looks something like this example for two different PRED-defined variables. (The abbreviated code may also be in $PK and/or $ERROR blocks if PREDPP is used.)
$PROBLEM first
$ABBREV COMRES=2
$PRED
...
X1=...
X2=...
COM(1)=X1
COM(2)=X2
$TABLE X1 X2
$PROBLEM second
....
$TABLE COM(1)=X1 COM(2)=X2
I hope I understood it correctly.
-- Alison Boeckmann