JSci.maths
Interface ComplexMapping

All Known Implementing Classes:
ComplexExponential, ComplexFunction, 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. It is expected that map(z) gives an identical result to map(z.real(), z.imag()).

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. This method is designed to save the construction of a Complex object in cases where one is not given.