The sinus product function.
The sinus product function
case 0: return 0;
case 1:
return sin(
pi*x[0]);
case 2:
return sin(
pi*x[0])*sin(
pi*x[1]);
default:
return sin(
pi*x[0])*sin(
pi*x[1])*sin(
pi*x[2]);
}
}
};
see the Float page for the full documentation
see the point page for the full documentation
point operator()(const point &x) const