From 0dd3b99ae2679d874efc3e56019f54dc913f561b Mon Sep 17 00:00:00 2001 From: Torkel Loman Date: Tue, 16 Jul 2024 09:24:04 -0400 Subject: [PATCH] Update docs/src/model_creation/network_analysis.md Co-authored-by: Sam Isaacson --- docs/src/model_creation/network_analysis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/model_creation/network_analysis.md b/docs/src/model_creation/network_analysis.md index 786e104f7d..1317929d78 100644 --- a/docs/src/model_creation/network_analysis.md +++ b/docs/src/model_creation/network_analysis.md @@ -520,7 +520,7 @@ oprob = ODEProblem(rs, u0, (0.0, 1.0), ps) sol = solve(oprob) plot(sol; idxs = [rs.X₁, rs.X₂, rs.X₁ + rs.X₂], label = ["X₁" "X₂" "X₁ + X₂ (a conserved quantity)"]) ``` -This makes sense, as while $X$ is converted between two different forms ( $X₁$ and $X₂$), it is neither produced nor degraded. That is, it is a *conserved quantity*. Next, if we consider the ODE that our model generates: +This makes sense, as while $X$ is converted between two different forms ($X₁$ and $X₂$), it is neither produced nor degraded. That is, it is a *conserved quantity*. Next, if we consider the ODE that our model generates: ```@example network_analysis_conservation_laws using Latexify latexify(rs; form = :ode)