View source: R/flaggedSkewSchurPol.R
flaggedSkewSchurPol | R Documentation |
Computes a flagged skew Schur polynomial (which is not symmetric in general). See Schur polynomials (flagged) for the definition.
flaggedSkewSchurPol(lambda, mu, a, b)
lambda , mu |
integer partitions defining the skew partition:
|
a , b |
lower bounds and upper bounds, weakly increasing vectors of
integers; |
A qspray
polynomial.
lambda <- c(3, 2, 2); mu <- c(2, 1)
n <- 3
a <- c(1, 1, 1); b <- c(n, n, n)
flaggedPoly <- flaggedSkewSchurPol(lambda, mu, a, b)
poly <- SkewSchurPol(n, lambda, mu)
flaggedPoly == poly # should be TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.