Improvements to the Javadoc of transform.FastCosineTransformer (MATH-677).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1213152 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-12-12 06:49:24 +00:00
parent 69992a098e
commit 4f53d73b9f
1 changed files with 4 additions and 36 deletions

View File

@ -111,13 +111,7 @@ public class FastCosineTransformer implements RealTransformer {
return new FastCosineTransformer(true);
}
/**
* Returns the forward transform of the specified real data set.
*
* @param f the real data array to be transformed
* @return the real transformed array
* @throws IllegalArgumentException if any parameters are invalid
*/
/** {@inheritDoc} */
public double[] transform(double[] f) throws IllegalArgumentException {
if (orthogonal) {
@ -127,17 +121,7 @@ public class FastCosineTransformer implements RealTransformer {
return fct(f);
}
/**
* Returns the forward transform of the specified real function, sampled on
* the specified interval.
*
* @param f the function to be sampled and transformed
* @param min the (inclusive) lower bound for the interval
* @param max the (exclusive) upper bound for the interval
* @param n the number of sample points
* @return the real transformed array
* @throws IllegalArgumentException if any parameters are invalid
*/
/** {@inheritDoc} */
public double[] transform(UnivariateFunction f,
double min, double max, int n) throws IllegalArgumentException {
@ -145,13 +129,7 @@ public class FastCosineTransformer implements RealTransformer {
return transform(data);
}
/**
* Returns the inverse transform of the specified real data set.
*
* @param f the real data array to be inversely transformed
* @return the real inversely transformed array
* @throws IllegalArgumentException if any parameters are invalid
*/
/** {@inheritDoc} */
public double[] inverseTransform(double[] f)
throws IllegalArgumentException {
@ -160,17 +138,7 @@ public class FastCosineTransformer implements RealTransformer {
return FastFourierTransformer.scaleArray(fct(f), s1);
}
/**
* Returns the inverse transform of the specified real function, sampled
* on the given interval.
*
* @param f the function to be sampled and inversely transformed
* @param min the (inclusive) lower bound for the interval
* @param max the (exclusive) upper bound for the interval
* @param n the number of sample points
* @return the real inversely transformed array
* @throws IllegalArgumentException if any parameters are invalid
*/
/** {@inheritDoc} */
public double[] inverseTransform(UnivariateFunction f,
double min, double max, int n) throws IllegalArgumentException {