/* The source code for generating the above plot */
#include
#include
int main() {
double r, x[150], y[150], z[22500];
int i, j;
class CPlot plot; // instantiate a plot class
linspace(x, -10, 10); // assign x with -10 <= x <= 10 linearly
linspace(y, -10, 10); // assign y with -10 <= y <= 10 linearly
for(i=0; i<150; i++) {
for(j=0; j<150; j++) {
r = sqrt(x[i]*x[i]+y[j]*y[j]);
z[150*i+j] = sin(r)/r; // peak function z in terms of (x, y)
}
}
plot.data3D(x, y, z); // add 3D plotting data
// output of the plot as a png file, instead of displaying on screen by default
// plot.outputType(PLOT_OUTPUTTYPE_FILE, "png", "hat.png");
plot.plotting(); // get the plotting job done
}
|