TITLE(normalize @@ Normalize a vector)
USAGE(
normalize(x)
)
ARGUMENTS(
ARG(x @@ numerical vector )
)
DESCRIPTION(
Remove mean and normalize variance to one.
)
EXAMPLES(
## The function is currently defined as
function (x) 
{
	(x - mean(x))/sqrt(var(x))
}
)

