Cards to enter objects different from integers?
Posted: Thu Feb 04, 2010 4:37 am
Dear RATS users,
is it possible to program a construction that allows to enter for instance a number of equations on a supplementary card to a procedure (like it is used e.g. in the forecast-command)?
To use this procedure I would like to enter something like
Ideally, I would like to enter cards that hold different type of objects (like with the forecast-command):
where resultX is a series/integer/real.
I tried to define the array used with enter inside the procedure as a vec[equ] - but this seems to be not working as I receive an error message that additional memory of "-13 bytes cannot be satisfied".
is it possible to program a construction that allows to enter for instance a number of equations on a supplementary card to a procedure (like it is used e.g. in the forecast-command)?
To use this procedure I would like to enter something like
Code: Select all
@testprocedure( options )
# eqn1 eqn2 ... eqnKCode: Select all
@testprocedure( options )
# eqn1 result1
# ...
# eqnK resultKI tried to define the array used with enter inside the procedure as a vec[equ] - but this seems to be not working as I receive an error message that additional memory of "-13 bytes cannot be satisfied".