Chapter 10: Matrices
160
…
row(
…
row(
(row multiplication) returns a matrix. It multiplies
row
of
matrix
by
value
and stores the results in
row
.
…
row(
value
,
matrix
,
row
)
…
row+(
…
row+(
(row multiplication and addition) returns a matrix. It multiplies
rowA
of
matrix
by
value
, adds it
to
rowB
, and stores the results in
rowB
.
…
row+(
value
,
matrix
,
rowA
,
rowB
)