Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vyudu committed Feb 5, 2025
1 parent e9edce1 commit 0dcc7a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/network_analysis/odes.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ In some cases it might be useful to generate the function defining the system of

Let's build the full symbolic function corresponding to our ODE system. `build_function` will return two expressions, one for a function that outputs a new vector for the result, and one for a function that modifies the input in-place. Either expression can then be evaluated to return a Julia function.
```@example s1
parammap = Dict([:k => 12., b => 8.])
parammap = Dict([:k => 12., :b => 8.])
K = fluxmat(rn, parammap)
odes = N * K * Φ
f_oop_expr, f_iip_expr = Symbolics.build_function(odes, species(rn))
Expand Down

0 comments on commit 0dcc7a5

Please sign in to comment.