On Sun, 27 Jan 2019, Sven Schreiber wrote:
Thanks Peter for confirming the test message - I'm resending a
message that
didn't get through yesterday:
Hi,
shouldn't the following work?:
open denmark
eval (LRY .< 10) * IBO
Geting "matrix not conformable" error.
What works is this two-line approach:
series s = (LRY .< 10)
eval s * IBO
Your first formulation is apperently confusing gretl by employing a
dot-operator (".<"). Such operators are explicitly intended for
matrices only, though a degree of slop is tolerated in some
contexts. If you do
open denmark
eval (LRY < 10) * IBO
you get the expected answer without complaint.
Allin