Learn R Programming

morpheus (version 1.0-4)

normalize: normalize

Description

Normalize a vector or a matrix (by columns), using euclidian norm

Usage

normalize(x)

Value

The normalized matrix (1 column if x is a vector)

Arguments

x

Vector or matrix to be normalized

Examples

Run this code
x <- matrix(c(1,2,-1,3), ncol=2)
normalize(x) #column 1 is 1/sqrt(5) (1 2),
             #and column 2 is 1/sqrt(10) (-1, 3)

Run the code above in your browser using DataLab