nrm2: Columnwise normalization of a matrix

Description Usage Arguments Value Author(s) See Also Examples

Description

Computation of a columnwise normalized version of a matrix.

Usage

1
 nrm2(A)

Arguments

A

Matrix of any order

Value

N

Matrix columnwise normalized

Author(s)

Maria Antonietta Del Ferraro mariaantonietta.delferraro@yahoo.it
Henk A.L. Kiers h.a.l.kiers@rug.nl
Paolo Giordani paolo.giordani@uniroma1.it

See Also

Cc

Examples

1
2
3
X <- matrix(rnorm(6*3),ncol=3)
Y <- nrm2(X)
apply(Y^2, 2, sum)

Example output

[1] 1 1 1

ThreeWay documentation built on May 2, 2019, 9:20 a.m.

Related to nrm2 in ThreeWay...