You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varorder internally calls reorder.mpoly(), but this is not the expected behavior. varorder, in mpoly(), sets intrinsic variable order, i.e. the order of the variables in then term, not the order of the terms themselves.
library("mpoly")
mp("x y + y x^2")
#> x y + x^2 y
mp("x y + y x^2", varorder= c("y", "x"))
#> x^2 y + x y
varorder
internally callsreorder.mpoly()
, but this is not the expected behavior.varorder
, inmpoly()
, sets intrinsic variable order, i.e. the order of the variables in then term, not the order of the terms themselves.Created on 2019-03-18 by the reprex package (v0.2.1)
The text was updated successfully, but these errors were encountered: