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

View source: R/RcppExports.R

updateCR Documentation

Function to obtain the kernel matrix of the determinantal point process

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

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

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

BAREB documentation built on April 12, 2025, 1:53 a.m.

Related to updateC in BAREB...