/**
* Normalize the data set, and allocate memory to hold it.
*/
public void normalize() {
NormalizationStrategy strat = this.helper.getNormStrategy();
if (strat == null) {
throw new EncogError(
"Please choose a model type first, with selectMethod.");
}