On Sat, 13 Apr 2013, yinung at Gmail wrote:
I found the following script works well in English Language mode but
only
part of the output was shown in Chinese Language mode. The output seems to
be stopped after the fourth line (i.e., matrix Coeff = $coeff) in Chinese
Language mode. There are not further output beyong the fourth line of the
script.
It is however that the script was executed completely. This potential
Chinese-only bug occurs both in gretl 1.9.12 and 1.9.12 cvs under winXP.
But the script work normally under my ubuntu 10.04 in Chinese Language mode.
<hansl>
open broiler
list xlist = const Y PCHICK PBEEF PCOR
ols 1 xlist
matrix Coeff = $coeff
matrix Stderr = $stderr
matrix Table1 = Coeff ~ Stderr
colnames(Table1, "Coeff. Std.Err.")
rownames(Table1, xlist)
print Table1
</hansl>
Strange. The Chinese output shows OK here on Linux. What
happens if you put "set messages off" before the first
"matrix" line?
Allin