On Fri, 23 Aug 2019, Sven Schreiber wrote:
Am 23.08.2019 um 12:32 schrieb Riccardo (Jack) Lucchetti:
> this could be made nicer with a column for time; unfortunately, I can't
> think of any easy automatic way to construct this, other than
> introducing a couple of new functions to retrieve the "t1" and
"t2"
> integers that are contained in the matrix info.
Good idea. But doesn't the following look like a off-by-one bug:
<hansl>
open denmark.gdt --quiet
list X = LRM LRY IBO IDE
var 4 X --silent
eval $system.t1 # 4
eval $system.t2 # 54
U = $uhat
print U # says t1=5, t2=55
</hansl>
Yes, it does. The $system t1 and t2 values are given "raw" (0-based),
but for consumption by users they should be adjusted to 1-based.
That's now done in git.
Allin