flaggedSkewSchurPol {jack} | R Documentation |
Flagged skew Schur polynomial
Description
Computes a flagged skew Schur polynomial (which is not symmetric in general). See Schur polynomials (flagged) for the definition.
Usage
flaggedSkewSchurPol(lambda, mu, a, b)
Arguments
lambda , mu |
integer partitions defining the skew partition:
|
a , b |
lower bounds and upper bounds, weakly increasing vectors of
integers; |
Value
A qspray
polynomial.
Examples
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
[Package jack version 6.1.0 Index]