Learn R Programming

jack (version 6.1.0)

ZonalR: Evaluation of zonal polynomials

Description

Evaluates a zonal polynomial.

Usage

ZonalR(x, lambda, algorithm = "DK")

Value

A numeric or complex scalar or a bigq rational number.

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 "DK" (Demmel-Koev) or "naive"

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

ZonalPolR

Examples

Run this code
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

Run the code above in your browser using DataLab