linalg[delrows] - delete rows of a matrix
linalg[delcols] - delete columns of a matrix
|
Calling Sequence
|
|
delrows(A, r..s)
delcols(A, r..s)
|
|
Parameters
|
|
A
|
-
|
matrix
|
r..s
|
-
|
integer range
|
|
|
|
|
Description
|
|
•
|
The function delrows(A, r..s) returns the submatrix of the matrix A obtained by deleting rows r through s. Similarly delcols(A, r..s) returns the submatrix of A obtained by deleting columns r through s.
|
|
These functions are part of the linalg package, and so can be used in the form delrows(..) only after performing the command with(linalg) or with(linalg,delrows). These functions can always be accessed in the long form linalg[delrows](..).
|
|
|
Download Help Document
Was this information helpful?