JackR {jack} | R Documentation |
Evaluation of Jack polynomials
Description
Evaluates a Jack polynomial.
Usage
JackR(x, lambda, alpha, algorithm = "DK")
Arguments
x |
numeric or complex vector or |
lambda |
an integer partition, given as a vector of decreasing integers |
alpha |
ordinary number or |
algorithm |
the algorithm used, either |
Value
A numeric or complex scalar or a bigq
rational number.
References
I.G. Macdonald. Symmetric Functions and Hall Polynomials. Oxford Mathematical Monographs. The Clarendon Press Oxford University Press, New York, second edition, 1995.
J. Demmel & P. Koev. Accurate and efficient evaluation of Schur and Jack functions. Mathematics of computations, vol. 75, n. 253, 223-229, 2005.
-
Jack polynomials. https://www.symmetricfunctions.com/jack.htm
See Also
Examples
lambda <- c(2,1,1)
JackR(c(1/2, 2/3, 1), lambda, alpha = 3)
# exact value:
JackR(c(gmp::as.bigq(1,2), gmp::as.bigq(2,3), gmp::as.bigq(1)), lambda,
alpha = gmp::as.bigq(3))
[Package jack version 6.1.0 Index]