| SchurPolR | R Documentation | 
Returns the Schur polynomial.
SchurPolR(n, lambda, algorithm = "DK", basis = "canonical", exact = TRUE)
| n | number of variables, a positive integer | 
| lambda | an integer partition, given as a vector of decreasing integers | 
| algorithm | the algorithm used, either  | 
| basis | the polynomial basis for  | 
| exact | logical, whether to use exact arithmetic | 
A mvp multivariate polynomial (see mvp-package),
or a qspray multivariate polynomial if
exact = TRUE and algorithm = "DK", or a
character string if basis = "MSF".
SchurPolR(3, lambda = c(3,1), algorithm = "naive")
SchurPolR(3, lambda = c(3,1), algorithm = "DK")
SchurPolR(3, lambda = c(3,1), algorithm = "DK", exact = FALSE)
SchurPolR(3, lambda = c(3,1), algorithm = "naive", basis = "MSF")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.