Description Usage Arguments See Also Examples
Given a polyMatrix, t
returns the transpose of x
1 2 | ## S4 method for signature 'polyMatrix'
t(x)
|
x |
a polyMatrix |
base::t()
for numerical matrix tranpose
1 2 3 4 5 6 7 | pm <- parse.polyMatrix("1, x, x^2",
"x, 1, x^3")
t(pm)
## [,1] [,2]
## [1,] 1 x
## [2,] x 1
## [3,] x^2 x^3
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.