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

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

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.

Value

[matrix] Normalized front.