kernel_normal {KBoost}R Documentation

A function to perform feature normalization in kernel space.

Description

A function to perform feature normalization in kernel space.

Usage

kernel_normal(K)

Arguments

K

an NxN numeric matrix with the kernel function with N observations.

Value

feature centred kernel.

Examples

x = rnorm(100,0,1)
k = RBF_K(x,40)
k_ = kernel_normal(k)

[Package KBoost version 1.2.0 Index]