mp: Define a multivariate polynomial.

mpR Documentation

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.

Author(s)

David Kahle david@kahle.io

See Also

mpoly()

Examples


( m <- mp("x + y + x y") )
is.mpoly( m )
unclass(m)

mp("1 + x")


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)


dkahle/mpoly documentation built on July 27, 2023, 11:44 p.m.