this.checkFrequency(intFreqLow);
this.checkFrequency(intFreqHigh);
// Transform function to frequency domain then remove components greater than cutoff
int intFreqMax = this.getMaximumFrequency();
AbstractComplexVector vecTrans = this.getTranformer().transform(arrFunc);
for (int index=0; index<intFreqLow; index++) // remove low frequencies
this.clearFreqComponent(index, vecTrans);
for (int index=intFreqHigh+1; index<intFreqMax; index++) // remove high frequencies
this.clearFreqComponent(index, vecTrans);