prettyForm {jack} | R Documentation |
Pretty form of the exact expression of a polynomial.
prettyForm(poly, asCharacter = FALSE)
poly |
an |
asCharacter |
Boolean, whether to return a character string; if
|
A character string if asCharacter=TRUE
, otherwise it is also
returned but invisibly, and it is printed in the console.
library(jack)
if(JuliaConnectoR::juliaSetupOk()){
julia <- Jack_julia()
( pol <- julia$ZonalPol(m = 2, lambda = c(3, 1)) )
prettyForm(pol)
JuliaConnectoR::stopJulia()
}