Learn R Programming

ecr (version 2.1.0)

normalizeFront: Normalize points of a set.

Description

Normalization is done by subtracting the min.value for each dimension and dividing by the max.value for each dimension by default.

Usage

normalizeFront(A, min.value = NULL, max.value = NULL)

Value

[matrix] Normalized front.

Arguments

A

[matrix]
Point set (each column corresponds to a point).

min.value

[numeric]
Vector of minimal values of length nrow(A). Default is the row-wise minimum of A.

max.value

[numeric]
Vector of maximal values of length nrow(A). Default is the row-wise maximum of A.