initChart();
}
public void initChart(){
// Define a function to plot
Mapper mapper = new Mapper(){
public double f(double x, double y) {
double sigma = 10;
return Math.exp( -(x*x+y*y) / sigma ) * Math.abs( Math.cos( 2 * Math.PI * ( x*x + y*y ) ) );
}
};