Appendix A: System Routines — Math
825
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
push_sequence
Declaration:
void
push_sequence
(EStackIndex
i
, EStackIndex
j
, EStackIndex
k
,
EStackIndex
m
, EStackIndex
n
)
Category(ies):
Math, Lists and Matrices
Description:
Pushes a sequence of internally-simplified values into a list on the estack.
Inputs:
i
— EStackIndex of the sequence generator expression in either
internal or external tokenized form.
j
— EStackIndex of the independent variable.
k
— EStackIndex of the starting value of the independent variable in
internal tokenized form.
m
— EStackIndex of the ending value of the independent variable in
internal tokenized form.
n
— EStackIndex of the step value of the independent variable in
internal tokenized form.
Outputs:
Pushes a sequence as a list on the estack. The sequence is generated by
incrementing variable
j
from start value
k
through end value
m
by an
increment of step
n
, and evaluating the sequence generator expression
i
for each step. The resulting sequence is in internal tokenized form.
Assumptions:
None
Side Effects:
May expand the estack, cause heap compression, or throw a variety of
evaluation errors depending upon the generator expression
Availability:
On AMS 2.00 and higher.
TI-89 / TI-92 Plus
Differences:
None
See Also:
None
(continued)