Learn R Programming

mpoly (version 1.1.2)

reorder.mpoly: Reorder a multivariate polynomial.

Description

This function is used to set the intrinsic order of a multivariate polynomial. It is used for both the in-term variables and the terms.

Usage

# S3 method for mpoly
reorder(x, varorder = vars(x), order, ...)

Value

An object of class mpoly.

Arguments

x

an object of class mpoly

varorder

the order of the variables

order

a total order used to order the terms, "lex", "glex", or "grlex"

...

additional arguments

Examples

Run this code


p <- mp("x y^2 z  +  x^2 z^2  +  z^2  +  x^3")	
reorder(p) # -> x y^2 z  +  x^2 z^2  +  z^2  +  x^3
reorder(p, varorder = c("x","y","z"), order = "lex")
    # -> x^3  +  x^2 z^2  +  x y^2 z  +  z^2
reorder(p, varorder = c("x","y","z"), order = "glex")
    # -> x^2 z^2  +  x y^2 z  +  x^3  +  z^2
reorder(p, varorder = c("x","y","z"), order = "grlex")
    # -> x y^2 z  +  x^2 z^2  +  x^3  +  z^2

reorder(mp("x + 1"), varorder = c("y","x","z"), order = "lex")
reorder(mp("x + y"), varorder = c("y","x","z"), order = "lex")
reorder(mp("x y + y + 2 x y z^2"), varorder = c("y","x","z"))
reorder(mp("x^2 + y x + y"), order = "lex")


Run the code above in your browser using DataLab