3C4C9 |
x%T
|
( x y → 100y/x )
Percent of Total Function
--
Returns the percent of the level
2 argument that is represented by
the level 1 argument.
--
x y → 100y/x
x 'sym' → '%T(x,sym )'
'sym' x → '%T(sym ,x)'
'sym1' 'sym2' → '%T(sym1,sym2)'
x_u1 y_u2 → 100y_u2/x_u1
x_u 'sym' → '%T(x_u,sym )'
'sym' x_u → '%T(sym ,x_u)'
--
Related: %,%ch
|
0530AB |
~xTAIL
|
( {} → {}' )
( $ → $' )
Last Listed Elements Cmd
--
Returns all but the first element
of a list or string.
--
Related: HEAD
|
3B829 |
xTAN
|
( x → x' )
Tangent Analytic Func
--
Returns the tangent of the
argument.
--
z → tan z
'sym' → 'TAN(symb)'
x_unitang → tan(x_unitang)
-
Related: ATAN,COS,SIN
|
3B911 |
xTANH
|
( x → x' )
Hyperbolic Tangent Analytic Func
--
Returns the hyperbolic tangent of
the argument.
--
z → tanh z
'sym' → 'TANH(sym )'
-
Related: ATANH,COSH,SINH
|
3DBDC |
xTAYLR
|
( symb var n → symb' )
Taylor's Polynomial Cmd
--
Calculates the nth order Taylor's
polynomial of 'symb' in the
variable var.
--
Related: ∂,∫,Σ
|
3E4AB |
xTHEN
|
( 0/1 → )
THEN Cmd
--
Starts the true-clause in conditional
or error-trapping structure
--
Related: CASE,ELSE,END ,IFERR
|
3EF1F |
xTHENCASE
|
THEN in a CASE statement.
--
Related: CASE,ELSE,END ,IFERR
UserRPL: xTHEN
|
3EE34 |
xERRTHEN
|
THEN in an ON ERROR construct.
--
Related: CASE,ELSE,END ,IFERR
UserRPL: xTHEN
|
0020AB |
~xTRACE
|
( [[]] → x )
Matrix Trace Cmd
--
Returns the trace of a square
matrix.
|
3C111 |
xTRNC
|
( x n → )
Truncate Func
--
Truncates an object to a specified
number of decimal places or
significant digits, or to fit the
current display format.
--
z1 ntrnc → z2
z1 'symtrnc' →
'TRNC(z1,symtrnc)'
'sym1' ntrnc →
'TRNC(sym1,ntrnc)'
'sym1' 'symtrnc' →
'TRNC(sym1,symtrnc)'
[ arr ]1 ntrnc → [ arr ]2
x_u ntrnc → y_u
x_u 'symtrnc' →
'TRNC(x_u,symtrnc)'
--
Related: RND
|
3E700 |
xUNTIL
|
( → )
UNTIL Cmd
--
Starts test-clause in
DO ... UNTIL ... END
indefinite loop structure.
--
See the DO entry for syntax info.
--
Related: DO ,END
|
03A0AB |
~xVERSION
|
( → $ $ )
Software Version Cmd
--
Displays the software version and
copyright message.
|
3A777 |
xWAIT
|
( sec → )
( 0 → rc.p )
Wait Cmd
--
Suspends program execution for
specified time, or until a key is
pressed.
--
Related: KEY
|
3E5C1 |
xWHILE
|
( → )
WHILE Indefinite Loop Struct Cmd
--
Starts the
WHILE ... REPEAT ... END
indefinite loop structure.
--
Related: DO ,END ,REPEAT
|
3DE2A |
xXOR
|
( # #' → #" )
( $ $' → $" )
( 1/0 1/0 → 1/0 )
Exclusive OR Cmd
--
Returns the logical exclusive OR
of two arguments.
#n1 #n2 → #n3
"str1" "str2" → "str3"
T/F1 T/F2 → 0/1
T/F 'sym' → 'T/F XOR sym'
'sym' T/F → 'sym XOR T/F'
'sym1' 'sym2' → 'sym1 XOR sym2'
--
Related: AND ,OR ,NOT
|
3BEED |
xXPON
|
( % → n )
Exponent Func
--
Returns the exponent of the arg.
--
Related: MANT,SIGN
|
0510AB |
~xXRECV
|
( name → )
XModem Receive Cmd
--
Prepares the HP 48 to receive an
object via XModem. The received
object is stored in the given
name.
--
Related: BAUD,RECV,RECN,SEND,XSEND
|
3B36B |
xXROOT
|
( y x → Y' )
xth Root of y Cmd
--
Computes the xth root of a real
number.
y x → x ROOT y
'sym1' 'sym2' → 'XROOT(sym2,sym1)'
'sym' x → 'XROOT(x,sym )'
y 'sym' → 'XROOT(sym ,y)'
y_u x → x ROOT y_u1/x
y_u 'sym' → 'XROOT(sym ,y_u)'
|
0500AB |
~xXSEND
|
( name → )
XModem Send Cmd
--
Sends a copy of the named object
via XModem.
--
Related: BAUD,RECN,RECV,SEND,XRECV
|