View source: R/factorialSchurPol.R
factorialSchurPol | R Documentation |
Computes a factorial Schur polynomial.
factorialSchurPol(n, lambda, a)
n |
number of variables |
lambda |
integer partition |
a |
vector of |
A qspray
polynomial.
I.G. Macdonald. Schur functions: theme and variations. Publ. IRMA Strasbourg, 1992.
# for a=c(0, 0, ...), the factorial Schur polynomial is the Schur polynomial
n <- 3
lambda <- c(2, 2, 2)
a <- c(0, 0, 0, 0)
factorialSchurPoly <- factorialSchurPol(n, lambda, a)
schurPoly <- SchurPol(n, lambda)
factorialSchurPoly == schurPoly # should be TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.