On Tue, 24 Jan 2017, Artur T. wrote:
The error message when calling tscvrol() is:
<output>
--dynamic: inapplicable option
*** error within loop in function tscvrol
> fcast ($t2+1) ($t2+b.nhor) --dynamic
Commands (as opposed to functions) are not generally equipped to
handle arbitary expressions such as the above. Try using string
substitution and see if that works:
string ft1 = sprintf("%d", $t2+1)
string ft2 = sprintf("%d", $t2+b.nhor)
fcast @ft1 @ft2 --dynamic
Allin