Total Complexity | 4 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | # encoding=utf8 |
||
8 | |||
9 | License: MIT |
||
10 | |||
11 | Function: Rosenbrock function |
||
12 | |||
13 | Input domain: |
||
14 | The function can be defined on any input domain but it is usually |
||
15 | evaluated on the hypercube x_i ∈ [-30, 30], for all i = 1, 2,..., D. |
||
16 | |||
17 | Global minimum: |
||
18 | f(x*) = 0, at x* = (1,...,1) |
||
19 | |||
20 | LaTeX formats: |
||
21 | Inline: $f(x) = \sum_{i=1}^{D-1} (100 (x_{i+1} - x_i^2)^2 + (x_i - 1)^2)$ |
||
22 | Equation: \begin{equation} |
||
23 | f(x) = \sum_{i=1}^{D-1} (100 (x_{i+1} - x_i^2)^2 + (x_i - 1)^2) |
||
24 | \end{equation} |
||
25 | Domain: $-30 \leq x_i \leq 30$ |
||
26 | |||
27 | Reference paper: |
||
57 |