normalizeFront {ecr} | R Documentation |
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)
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.
[Package
ecr version 2.1.0
Index]