Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rveltz committed Nov 30, 2024
2 parents a0f8f4c + 3715c17 commit 4a06c18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/simplehopf.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ More precisely, if $\mathbf{J} \equiv d\mathbf{F}(x_0,p_0)$, then we have $\math

### Expression of the coefficients

The coefficients $a,b$ above are computed as follows[^Haragus]:
The coefficients $a,l_1$ above are computed as follows[^Haragus]:

$$a=\left\langle\mathbf{F}_{11}(\zeta)+2 \mathbf{F}_{20}\left(\zeta, \Psi_{001}\right), \zeta^{*}\right\rangle,$$

Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorials/ode/lorenz84-PO.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ parlor = (α = 1//4, β = 1., G = .25, δ = 1.04, γ = 0.987, F = 1.762053287963
z0 = [2.9787004394953343, -0.03868302503393752, 0.058232737694740085, -0.02105288273117459]
recordFromSolutionLor(x, p; k...) = (u = BK.getVec(x);(X = u[1], Y = u[2], Z = u[3], U = u[4]))
recordFromSolutionLor(x, p; k...) = (u = BK.getvec(x);(X = u[1], Y = u[2], Z = u[3], U = u[4]))
prob = BK.BifurcationProblem(Lor, z0, parlor, (@optic _.F);
record_from_solution = (x, p; k...) -> (X = x[1], Y = x[2], Z = x[3], U = x[4]),)
Expand Down

0 comments on commit 4a06c18

Please sign in to comment.