linalg(deprecated)/row - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


Home : Support : Online Help : linalg(deprecated)/row

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

Calling Sequence

row(A, i)

row(A, i..k)

col(A, i)

col(A, i..k)

Parameters

A

-

matrix

i, k

-

positive integers

Description

• 

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](..).

Examples

Important: The linalg package has been deprecated. Use the superseding commands LinearAlgebra[Row] and LinearAlgebra[Column], instead.

withlinalg:

Amatrix3,3,1,2,3,4,5,6,7,8,9

A123456789

(1)

rowA,2

456

(2)

colA,2..3

258,369

(3)

See Also

linalg(deprecated)[addrow]

linalg(deprecated)[delrows]

linalg(deprecated)[mulrow]

linalg(deprecated)[rowdim]

linalg(deprecated)[stackmatrix]

LinearAlgebra