t-polyMatrix-method: Polynomial matrix transpose

Description Usage Arguments See Also Examples

Description

Given a polyMatrix, t returns the transpose of x

Usage

1
2
## S4 method for signature 'polyMatrix'
t(x)

Arguments

x

a polyMatrix

See Also

base::t() for numerical matrix tranpose

Examples

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

polyMatrix documentation built on July 18, 2021, 5:06 p.m.