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)
[matrix
] Normalized front.
[matrix
]
Point set (each column corresponds to a point).
[numeric
]
Vector of minimal values of length nrow(A)
.
Default is the row-wise minimum of A
.
[numeric
]
Vector of maximal values of length nrow(A)
.
Default is the row-wise maximum of A
.