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

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/math/analysis/interpolation/UnivariateRealInterpolator.java

  • Committer: Bazaar Package Importer
  • Author(s): Damien Raude-Morvan
  • Date: 2010-04-05 23:33:02 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100405233302-gpqlceked76nw28a
Tags: 2.1-1
* New upstream release.
* Bump Standards-Version to 3.8.4: no changes needed
* Bump debhelper to >= 7
* Switch to 3.0 (quilt) source format:
  - Remove B-D on quilt
  - Add d/source/format
  - Remove d/README.source

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
/**
23
23
 * Interface representing a univariate real interpolating function.
24
 
 *  
25
 
 * @version $Revision: 799857 $ $Date: 2009-08-01 09:07:12 -0400 (Sat, 01 Aug 2009) $
 
24
 *
 
25
 * @version $Revision: 821626 $ $Date: 2009-10-04 17:57:30 -0400 (Sun, 04 Oct 2009) $
26
26
 */
27
27
public interface UnivariateRealInterpolator {
28
28
 
32
32
     * @param yval the values for the interpolation points
33
33
     * @return a function which interpolates the data set
34
34
     * @throws MathException if arguments violate assumptions made by the
35
 
     *         interpolationg algorithm
 
35
     *         interpolation algorithm
36
36
     */
37
 
    public UnivariateRealFunction interpolate(double xval[], double yval[])
 
37
    UnivariateRealFunction interpolate(double xval[], double yval[])
38
38
        throws MathException;
39
39
}