JSci.maths
Interface ComplexMapping

All Known Implementing Classes:
MandelbrotMap, RandomMap

public interface ComplexMapping

This interface defines a complex map or function. It is used to pass user-defined functions to some of the other maths classes.

Version:
1.1
Author:
Mark Hale
See Also:
NumericalMath, Mapping, MappingND

Method Summary
 Complex map(Complex z)
          A user-defined complex function.
 Complex map(double real, double imag)
          A user-defined complex function.
 

Method Detail

map

Complex map(Complex z)
A user-defined complex function.


map

Complex map(double real,
            double imag)
A user-defined complex function.