Matrix transpose of a polyMatrix class object
The method first convert the storage method of
the given polyMatrix object to polyMdlist class interpretation,
then flips the polyMatrix over its diagonal.
## S3 method for class 'polyMatrix' t(x)
x |
|
A 'polyMdlist, polyMatrix' class object,
the transposed version of the given x polynomial matrix.
The ‘t’ in the base package.
m <- matrix(1:12,3,4)
t(m) # the \code{base::t()} function
pa <- polyMgen.a()
pm <- t(pa)
dim(pm) # 3 x 2
class(pm) # "polyMdlist" "polyMatrix"Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.