R/mpolyListArithmetic.R
mpolyListArithmetic.Rd
Element-wise arithmetic with vectors of multivariate polynomials.
# S3 method for mpolyList +(e1, e2) # S3 method for mpolyList -(e1, e2) # S3 method for mpolyList *(e1, e2)
e1 | an object of class mpolyList |
---|---|
e2 | an object of class mpolyList |
An object of class mpolyList.
#> x #> y#> y #> 2 x^2ms1 + ms2#> x + y #> 2 x^2 + yms1 - ms2#> x - y #> -2 x^2 + yms1 * ms2#> x y #> 2 x^2 yms1^3#> x^3 #> y^3