Rastrigin Function
Mathematical Definition
\[f(\textbf{x})=f(x_1, ..., x_n)=10n + \sum_{i=1}^{n}(x_i^2 - 10cos(2\pi x_i))\]Plots
The contour of the function is as presented below:
Description and Features
- The function is continuous.
- The function is convex.
- The function is defined on n-dimensional space.
- The function is multimodal.
- The function is differentiable.
- The function is separable.
- The function is .
Input Domain
Python
For Python, the function is implemented in the benchmarkfcns package, which can be installed from command line with pip install benchmarkfcns
.
MATLAB
The function can be defined on any input domain but it is usually evaluated on $x_i \in [-5.12, 5.12]$ for $i = 1, …, n$ .
Global Minima
The function has one global minimum $f(\textbf{x}^{\ast})=0 at $\textbf{x}^{\ast} = (0, 0)$.
Implementation
An implementation of the Rastrigin Function with MATLAB is provided below.
The function can be represented in Latex as follows:
Acknowledgement
Tobias Völk kindly contributed to the correctness of this document.