You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/examples/rosenbrock.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ f(x, y; a, b) = \left(a - x\right)^2 + b \left(y - x^2\right)^2
18
18
19
19
The domains $x$ and $y$ are first captured as a new vector $\hat{x}$. Parameters $a$ and $b$ are captured as a new vector $\hat{p} and assigned values to produce the desired Rosenbrock function.
20
20
```math
21
-
\hat{x} = \begin{bmatrix} x \\ y \end{bmatrix}
21
+
\hat{x} = \begin{bmatrix} x \\ y \end{bmatrix} \\
22
22
\hat{p} = \begin{bmatrix} a \\ b \end{bmatrix} = \begin{bmatrix} 1 \\ 100 \end{bmatrix}
0 commit comments