normalize: Normalization of vectors

View source: R/normalize.R

normalizeR Documentation

Normalization of vectors

Description

Normalization of vectors.

Usage

normalize(v, w = NULL)

Arguments

v

vector

w

optional vector

Details

The vector v is normalized to length 1. If w is given, it is normalized by the length of v.

Value

v

normalized v

w

normalized w

Author(s)

Nicole Kraemer, Mikio L. Braun

Examples


v<-rnorm(5)
w<-rnorm(10)
dummy<-normalize(v,w)


plsdof documentation built on Dec. 1, 2022, 1:13 a.m.