Am 27.01.2017 um 15:18 schrieb Marcin Błażejowski:
W dniu 27.01.2017 o 14:52, Allin Cottrell pisze:
> Hopefully this should
> either confirm that gretl is right or expose a bug that we can fix.
I got it.
It's funny: the bug in code was like this: transpose(_matrix_) =
transp(msortby(transp(_matrix_), 2)) and should be _matrix_ =
transp(msortby(transp(_matrix_), 2)). However the first transp (on the
left side) seems not working at all. I other words we found a bug which
doesn't behave as bug.
Hmmm...
You mean like this:
<hansl>
matrix m = 1
transp(m) = {0, 1; 2, 3}
print m # gives 1 (1x1)
</hansl>
Yes, interesting. It doesn't "work" with "m'", though (i.e.,
gives an
error).
thanks,
sven