~ubuntu-branches/ubuntu/quantal/commons-math/quantal

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/transform/RealTransformer.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan, Torsten Werner, Damien Raude-Morvan
  • Date: 2011-03-07 21:14:46 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110307211446-4zea7og4eeyzhpai
Tags: 2.2-1
[ Torsten Werner ]
* Change maintainers into Maintainers.

[ Damien Raude-Morvan ]
* New upstream release (Closes: #617209).
* d/control: Bump Standards-Version to 3.9.1 (no changes needed).
* d/copyright: Refresh years, upgrade to DEP5 r166 and relicence my work
  under Apache-2.0.
* d/ant.properties: Set junit.jar to /usr/share/java/junit4.jar
  to ensure unit tests are launched.
* d/docs: Install upstream RELEASE-NOTES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 * interface since it produces {@link org.apache.commons.math.complex.Complex complex}
29
29
 * results instead of real ones.
30
30
 * </p>
31
 
 * @version $Revision: 811786 $ $Date: 2009-09-06 05:36:08 -0400 (Sun, 06 Sep 2009) $
 
31
 * @version $Revision: 1070725 $ $Date: 2011-02-15 02:31:12 +0100 (mar. 15 févr. 2011) $
32
32
 * @since 2.0
33
33
 */
34
34
public interface RealTransformer  {
49
49
     * @param max the upper bound for the interval
50
50
     * @param n the number of sample points
51
51
     * @return the real transformed array
52
 
     * @throws FunctionEvaluationException if function cannot be evaluated
53
 
     * at some point
 
52
     * @throws FunctionEvaluationException if function cannot be evaluated at some point
54
53
     * @throws IllegalArgumentException if any parameters are invalid
55
54
     */
56
55
    double[] transform(UnivariateRealFunction f, double min, double max, int n)
72
71
     * @param max the upper bound for the interval
73
72
     * @param n the number of sample points
74
73
     * @return the real inversely transformed array
75
 
     * @throws FunctionEvaluationException if function cannot be evaluated
76
 
     * at some point
 
74
     * @throws FunctionEvaluationException if function cannot be evaluated at some point
77
75
     * @throws IllegalArgumentException if any parameters are invalid
78
76
     */
79
77
    double[] inversetransform(UnivariateRealFunction f, double min, double max, int n)