804
Appendix A: System Routines — Math
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
push_min1
Declaration:
void
push_min1
(EStackIndex
i
)
Category(ies):
Math
Description:
If
i
indexes a matrix, returns a one-row matrix of the minimums in each
column. Otherwise if
i
indexes a list, returns the minimum of the elements.
Otherwise returns expression
i
.
Inputs:
i
— Indexes the top tag of an internally-simplified algebraic expression
or an aggregate thereof.
Outputs:
None
Assumptions:
None
Side Effects:
None
Availability:
On AMS 2.02 and higher.
TI
-
89 / TI
-
92 Plus
Differences:
None
See Also: push_max1, push_min2, push_min, push_max2, push_max
Example:
push_quantum (END_TAG);
push_Float (3.2);
push_Float (5.7);
push_quantum (LIST_TAG);
push_min1 (top_estack); /* Pushes a tagged float 3.2 */