linalg[transpose] - compute the transpose of a matrix
|
Calling Sequence
|
|
transpose(A)
|
|
Parameters
|
|
A
|
-
|
m x n matrix or vector
|
|
|
|
|
Description
|
|
•
|
The matrix transpose of A is computed. The result is an n x m matrix. The [i,j]th element of the result is equal to the [j,i]th element of A. The result inherits the indexing function (for example, diagonal or sparse) of A, if it has one.
|
•
|
If A is a vector, then it is treated as if it were a column vector; transpose(A) would therefore be a row vector.
|
•
|
The command with(linalg,transpose) allows the use of the abbreviated form of this command.
|
|
|
Download Help Document
Was this information helpful?