Skip to content

Commit

Permalink
Merge pull request #10 from rseydam/patch-2
Browse files Browse the repository at this point in the history
Update lorenz84-PO.md - change function name to getvec
  • Loading branch information
rveltz authored Nov 18, 2024
2 parents d29643a + b79c457 commit 7a24a8a
Showing 1 changed file with 1 addition and 1 deletion.
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 7a24a8a

Please sign in to comment.