}
public void setNullDistribution(float[] x) {
myLogger.setLevel(Level.DEBUG);
myLogger.debug("Length of input array is " + x.length);
_nullValues = new IndexedFloatArray(x.length);
_nullValues.set(0, 0.0f);
for(int i=1; i<x.length; i++)
_nullValues.set(i, x[i]);
}