normalize(snns)R Documentation

Normalize a vector

Description

Remove mean and normalize variance to one.

Usage

normalize(x)

Arguments

x numerical vector

Examples

## The function is currently defined as
function (x) 
{
	(x - mean(x))/sqrt(var(x))
}


[Package Contents]