updateC: Function to obtain the kernel matrix of the determinantal...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/RcppExports.R

Description

This function takes a matrix and two parameters of kernel function for the determinantal point process (DPP) and gives the kernel matrix for that DPP.

Usage

1
updateC(Z,theta,tau)

Arguments

Z

a matrix, whose rows stand for configurations of the DPP.

theta

a parameter of the DPP's kernel function

tau

a parameter of the DPP's kernel function

Value

updateC(Z,theta,tau) returns the kernel matrix

Author(s)

Yuliang Li

See Also

update_RJ for a complete example for all functions in this package.

Examples

1
2
  Z <- matrix(rnorm(15), nrow = 5)
  updateC(Z,1,1)

BAREB documentation built on March 26, 2020, 7:36 p.m.

Related to updateC in BAREB...