icawhiten: Simple icawhitening function.

View source: R/icawhiten.R

icawhitenR Documentation

Simple icawhitening function.

Description

Icawhitens the input matrix using SVD and returns the result.

Usage

icawhiten(Xin, n.comp, verbose = FALSE)

Arguments

Xin

input matrix

n.comp

number of components on which to project

verbose

bool

Value

matrix is output

Author(s)

Avants BB, fastICA package (see CRAN)

Examples


mat <- matrix(c(rep(1, 100), rep(0, 200)), ncol = 50)
wmat <- icawhiten(mat, 2)


stnava/ANTsR documentation built on April 16, 2024, 12:17 a.m.