800
Appendix A: System Routines — Math
TI
-
89 / TI
-
92 Plus Developer Guide
Not for Distribution
Beta Version January 26, 2001
push_max2
Declaration:
void
push_max2
(EStackIndex
i
, EStackIndex
j
)
Category(ies):
Math
Description:
Pushes the expression indexed by
i
if
j
is equal to NULL_INDEX. Otherwise
pushes onto the estack the internally-simplified maximum of the two
expressions indexed by
i
and
j
.
Inputs:
i
— Index of the top tag of an internally-simplified algebraic expression
or aggregate thereof.
j
— NULL_INDEX or an index of the top tag of an internally-simplified
algebraic expression or 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_min1, push_min2, push_min, push_max1, push_max
Example:
push_Float (3.2);
j = top_estack;
push_Float (5.7);
push_max2 (top_estack, j); /* Pushes a tagged float 5.7 */