ZonalR {jack} | R Documentation |
Evaluation of zonal polynomials
Description
Evaluates a zonal polynomial.
Usage
ZonalR(x, lambda, algorithm = "DK")
Arguments
x |
numeric or complex vector or bigq vector |
lambda |
an integer partition, given as a vector of decreasing integers |
algorithm |
the algorithm used, either |
Value
A numeric or complex scalar or a bigq
rational number.
References
Robb Muirhead. Aspects of multivariate statistical theory. Wiley series in probability and mathematical statistics. Probability and mathematical statistics. John Wiley & Sons, New York, 1982.
Akimichi Takemura. Zonal Polynomials, volume 4 of Institute of Mathematical Statistics Lecture Notes – Monograph Series. Institute of Mathematical Statistics, Hayward, CA, 1984.
Lin Jiu & Christoph Koutschan. Calculation and Properties of Zonal Polynomials. http://koutschan.de/data/zonal/
See Also
Examples
lambda <- c(2,2)
ZonalR(c(1,1), lambda)
ZonalR(c(gmp::as.bigq(1),gmp::as.bigq(1)), lambda)
##
x <- c(3,1)
ZonalR(x, c(1,1)) + ZonalR(x, 2) # sum(x)^2
ZonalR(x, 3) + ZonalR(x, c(2,1)) + ZonalR(x, c(1,1,1)) # sum(x)^3
[Package jack version 6.1.0 Index]