Mapping.java :  » Science » JSci » JSci » maths » Java Open Source

Java Open Source » Science » JSci 
JSci » JSci » maths » Mapping.java
package JSci.maths;

/**
* This interface defines a map or function.
* It is used to pass user-defined functions to some of
* the other maths classes.
* @see NumericalMath
* @see ComplexMapping
* @see MappingND
* @version 1.1
* @author Mark Hale
*/
public interface Mapping {
        /**
        * A user-defined function.
        */
        double map(double x);
}

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.