User Manual

Table Of Contents
2-47
Example 1 To fill all of the cells of Matrix A with the value 3
K2(MAT) 6( g) 3(Fill)
d,6( g) 1(Mat) av(A) w
1(Mat)av(A)w
The “Fill” command can be used to write the same value into all vector elements.
Example 2 To combine the following two matrices:
K2(MAT) 5(Aug)
1(Mat) av(A) ,
1(Mat) al(B) w
The two matrices you combine must have the same number of rows. An error occurs if you
try to combine two matrices that have different number of rows.
You can use Matrix Answer Memory to assign the results of the above matrix input and edit
operations to a matrix variable. To do so, use the following syntax.
Fill (
n , Mat
α
)
Augment (Mat
α
, Mat
β
) Mat
γ
In the above,
α
,
β
, and
γ
are any variable names A through Z, and n is any value.
The above does not affect the contents of Matrix Answer Memory.
The “Augment” command can be used to merge two vectors into a single matrix.
u To assign the contents of a matrix column to a list [OPTN]-[MAT]-[ML]
Use the following format with the MatList command to specify a column and a list.
Mat List (Mat X,
m) List n
X = matrix name (A through Z)
m = column number
n = list number
Example To assign the contents of column 2 of the following matrix to list 1:
Matrix A =
1 2
3 4
5 6
K2(MAT) 2(M L)
1(Mat) av(A) ,c)
aK1(LIST) 1(List) bw
1(List) bw
A =
1
2
B =
3
4