* <code>parameters</code> length is not 3, or if
* <code>parameters[2]</code> is 0
*/
public GaussianDerivativeFunction(double[] parameters) {
if (parameters == null) {
throw new NullArgumentException(LocalizedFormats.INPUT_ARRAY);
}
if (parameters.length != 3) {
throw new DimensionMismatchException(3, parameters.length);
}
if (parameters[2] == 0.0) {