kernlab (version 0.8-2)

inchol-class: Class "inchol"

Description

The reduced Cholesky decomposition object

Arguments

Objects from the Class

Objects can be created by calls of the form new("inchol", ...). or by calling the inchol function.

Extends

Class "matrix", directly.

See Also

inchol, csi-class, csi

Examples

Run this code
data(iris)
datamatrix <- as.matrix(iris[,-5])
# initialize kernel function
rbf <- rbfdot(sigma=0.1)
rbf
Z <- inchol(datamatrix,kernel=rbf)
dim(Z)
pivots(Z)
diagresidues(Z)
maxresiduals(Z)

Run the code above in your browser using DataCamp Workspace