Allin Cottrell schrieb:
On Tue, 15 May 2007, Sven Schreiber wrote:
> 3) when I run a (py4gretl) function script, the session symbol window is
> automatically closed -- but this is better than before, because no
> spurious matrices appear anymore!
Actually this does not sound right. Could you send me test cases
(scripts) for py4gretl, please? Then I can, hopefully, shake out
the remaining bugs in the function calling apparatus. Thanks.
Sure, the following produces the effect for me (this should hopefully
also work with the public py4gretl_vecrestrict version on the server).
Of course you have to open the session symbol window before executing
the script.
BTW, there are still some bugs related to function packaging, gretl
still gets confused by functions with the same names (for example, from
an existing package that was run during the session, and then running a
new version for debugging and/or development purposes). So my rule for
the moment is to quit and restart gretl if I want to package a function.
But since that normally won't affect regular users, I think it's not
that urgent to fix it. However, that was the reason why I mentioned
gretl could use some settling-down time. It may also be that those bugs
sometimes affect the mere running of existing packages as well, I'm not
sure.
cheers,
-Sven
open denmark
list endo = LRM LRY
list rexo = null
list uexo = null
scalar n_y = nelem(endo)
scalar n1 = n_y + nelem(rexo) # not if determ_case = 2 or 4
scalar cirank = 1
matrix a_pat = ones(nelem(endo), cirank) * 99
matrix b_pat = 99*ones(n1-cirank, cirank) | I(cirank)
matrix test2 = py4gretl_vecrestrict(endo, 2, cirank, 3, 1, rexo, uexo,
a_pat, b_pat, 2000, 6)