Skip to content

Commit 70e0e73

Browse files
authored
Fix equation formatting
1 parent 8a303b7 commit 70e0e73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/examples/rosenbrock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ f(x, y; a, b) = \left(a - x\right)^2 + b \left(y - x^2\right)^2
1818

1919
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.
2020
```math
21-
\hat{x} = \begin{bmatrix} x \\ y \end{bmatrix}
21+
\hat{x} = \begin{bmatrix} x \\ y \end{bmatrix} \\
2222
\hat{p} = \begin{bmatrix} a \\ b \end{bmatrix} = \begin{bmatrix} 1 \\ 100 \end{bmatrix}
2323
```
2424

0 commit comments

Comments
 (0)