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 ... eqnK
Ideally, I would like to enter cards that hold different type of objects (like with the forecast-command):
- Code: Select all
@testprocedure( options )
# eqn1 result1
# ...
# eqnK resultK
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".
