linalg[rowspace] - compute a basis for the row space
linalg[colspace] - compute a basis for the column space
|
Calling Sequence
|
|
rowspace(A)
colspace(A)
rowspace(A, 'dim')
colspace(A, 'dim')
|
|
Parameters
|
|
A
|
-
|
matrix
|
'dim'
|
-
|
(optional) unevaluated name
|
|
|
|
|
Description
|
|
•
|
The functions rowspace(A) and colspace(A) return a set of vectors that form a basis for the vector space spanned by the rows and columns of the matrix A, respectively. The vectors are returned in a canonical form with leading entries 1.
|
•
|
The optional second parameter 'dim' is assigned the rank of A, which is the dimension of the row and column space.
|
|
These functions are part of the linalg package, and so can be used in the form rowspace(..) only after performing the command with(linalg) or with(linalg, rowspace). They can always be accessed in the long form linalg[rowspace](..).
|
|
|
Examples
|
|
Important: The linalg package has been deprecated. Use the superseding packages, LinearAlgebra and VectorCalculus, instead.
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
>
|
|
Warning, unable to find a provably non-zero pivot
| |
| (7) |
|
|
Download Help Document
Was this information helpful?