linalg(deprecated)
row
extract row(s) of a matrix as vector(s)
col
extract column(s) of a matrix as vectors(s)
Calling Sequence
Parameters
Description
Examples
row(A, i)
row(A, i..k)
col(A, i)
col(A, i..k)
A
-
matrix
i, k
positive integers
Important: The linalg package has been deprecated. Use the superseding commands LinearAlgebra[Row] and LinearAlgebra[Column], instead.
- For information on migrating linalg code to the new packages, see examples/LinearAlgebraMigration.
The function col(A, i) (row(A, i)) extracts the ith column (row) of the matrix A. The result is returned as a vector.
More generally, col(A, i.. k) (row(A, i.. k)) extracts a sequence of columns (rows) i..k of the matrix A. The result is returned as a sequence of vectors.
These functions are part of the linalg package, and so can be used in the form row(..) only after performing the command with(linalg) or with(linalg,row). These functions can always be accessed in the long form linalg[row](..).
with⁡linalg:
A≔matrix⁡3,3,1,2,3,4,5,6,7,8,9
A≔123456789
row⁡A,2
456
col⁡A,2..3
258,369
See Also
linalg(deprecated)[addrow]
linalg(deprecated)[delrows]
linalg(deprecated)[mulrow]
linalg(deprecated)[rowdim]
linalg(deprecated)[stackmatrix]
LinearAlgebra
Download Help Document