mpolyList | R Documentation |
Combine a series of mpoly objects into a mpolyList.
mpolyList(...)
... |
a series of mpoly objects. |
An object of class mpolyList.
( p1 <- mp("t^4 - x") )
( p2 <- mp("t^3 - y") )
( p3 <- mp("t^2 - z") )
( ms <- mpolyList(p1, p2, p3) )
is.mpolyList( ms )
mpolyList(mp("x + 1"))
p <- mp("x + 1")
mpolyList(p)
ps <- mp(c("x + 1", "y + 2"))
is.mpolyList(ps)
f <- function(){
a <- mp("1")
mpolyList(a)
}
f()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.