up previous next
SetRow

set a list as a row into a matrix

Syntax
SetRows(ref M: MAT, i: INT, L: LIST)

Description
This procedure sets the elements in L as entries of the i -th row in the matrix M ; it returns nothing!

Example
/**/  M := IdentityMat(QQ, 5);
/**/  SetRow(ref M, 1, [2,3,4,0,0]);
/**/  M;
matrix(QQ,
 [[2, 3, 4, 0, 0],
  [0, 1, 0, 0, 0],
  [0, 0, 1, 0, 0],
  [0, 0, 0, 1, 0],
  [0, 0, 0, 0, 1]])

See Also