KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > JSci > maths > MappingND


1 package JSci.maths;
2
3 /**
4 * This interface defines a map between N-dimensional spaces.
5 * @see Mapping
6 * @see ComplexMapping
7 * @version 1.1
8 * @author Mark Hale
9 */

10 public interface MappingND {
11         /**
12         * A user-defined map.
13         */

14         double[] map(double x[]);
15 }
16
17
Popular Tags