On Thu, 18 Feb 2010, Sven Schreiber wrote:
I can't seem to use the new restrict after gmm feature.
gmm
series e = y - x*beta
orthog e ; x
weights V
params beta
end gmm
restrict
beta = 3
end restrict
You must refer to the parameters in the canonical way, as set out
in the help for "restrict". In this case,
restrict
b[1] = 3
end restrict
The error message was misleading, this is now fixed in CVS.
Allin.