plug: Switch indeterminates in a polynomial

View source: R/plug.R

plugR Documentation

Switch indeterminates in a polynomial

Description

Switch indeterminates in a polynomial

Usage

plug(p, indeterminate, value)

Arguments

p

a polynomial

indeterminate

the indeterminate in the polynomial to switch

value

the value/indeterminate to substitute

Value

an mpoly object

Examples


# on an mpoly
(p <- mp("(x+y)^3"))
plug(p, "x", 5)
plug(p, "x", "t")
plug(p, "x", "y")
plug(p, "x", mp("2 y"))

plug(p, "x", mp("x + y"))
mp("((x+y)+y)^3")

# on an mpolyList
ps <- mp(c("x+y", "x+1"))
plug(ps, "x", 1)


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