3-152 Full Command and Function Reference
Description: Rows to Matrix Command: Transforms a series of row vectors and a row count into a matrix
containing those rows, or transforms a sequence of numbers and an element count into a vector
with those numbers as elements.
Access: !Ø
CREATE ROW ROW→ ( Ø is the left-shift of the 5key).
!´
MATRIX ROW ROW→ ( ´ is the left-shift of the Pkey).
Input/Output:
L
n+1
/A
1
… L
2
/A
n
L
1
/A
n+1
Level 1/Item 1
[ vector ]
row 1
… [ vector ]
row n
n
row count
→
[[ matrix ]]
element
1
… element
n
n
element count
→
[ vector ]
column
L = Level; A = Argument; I = item
See also: →COL, COL→, →ROW
→ROW
Type: Command
Description: Matrix to Rows Command: Transforms a matrix into a series of row vectors, returning the
vectors and row count, or transforms a vector into its elements, returning the elements and
element count.
Access: !Ø
CREATE ROW →ROW ( Ø is the left-shift of the 5key).
!´
MATRIX ROW →ROW ( ´ is the left-shift of the Pkey).
Input/Output:
L
1
/Argument
1
L
n+1
/I
1
… L
2
/I
n
L
1
/I
n+1
[[ matrix ]]
→
[ vector ]
row n
… [ vector ]
row n
n
rowcount
[ vector ]
→
element
1
… element
n
n
elementcount
L =Level; A = Argument; I = Item
See also: →COL, COL→, ROW→
RPL>
Type: Command
Description: User RPL program function. This function allows for the entry and execution of User RPL
programs while in algebraic mode. While RPL programs can be written in algebraic mode
without the use of this function, some RPL constructs, such as FOR…NEXT loops, will
produce an error message if not preceded by the RPL> function. As an algebraic function, it will
be placed on the command line with a pair of parentheses attached, which must be removed
before its use.
For example, to enter the user RPL program of
<< 1 5 + >> in algebraic mode, choose the
RPL> function from the catalog and press
`. Remove the parentheses by pressing ™ƒƒ.
Then enter the program by pressing
…å1#5#+`. The program object will
now be on the first command line. It can be evaluated by pressing
N!î`.
Access: … µ RPL>
Input/Output:
Level 1/Argument 1 Level 1/Item 1
→
obj
RR
Type: Command