mpoly (version 1.1.1)

mp: Define a multivariate polynomial.

Description

mp is a smart function which attempts to create a formal mpoly object from a character string containing the usual representation of a multivariate polynomial.

Usage

make_indeterminate_list(vars)

mp(string, varorder, stars_only = FALSE)

Arguments

vars

a character vector of indeterminates

string

a character string containing a polynomial, see examples

varorder

(optional) order of variables in string

stars_only

if you format your multiplications using asterisks, setting this to TRUE will reduce preprocessing time

Value

An object of class mpoly.

See Also

mpoly()

Examples

Run this code
# NOT RUN {
( m <- mp("x + y + x y") )
is.mpoly( m )
unclass(m)


mp("x + 2 y + x^2 y + x y z")
mp("x + 2 y + x^2 y + x y z", varorder = c("y", "z", "x"))

( ms <- mp(c("x + y", "2 x")) )
is.mpolyList(ms)


gradient( mp("x + 2 y + x^2 y + x y z") )
gradient( mp("(x + y)^10") )

# mp and the print methods are kinds of inverses of each other
( polys <- mp(c("x + y", "x - y")) )
strings <- print(polys, silent = TRUE)
strings
mp(strings)

# }

Run the code above in your browser using DataCamp Workspace