From 078426bae865c1310a4fea86ae0a1f12cb2c84c1 Mon Sep 17 00:00:00 2001 From: Valentin Sulzer Date: Sun, 16 May 2021 11:41:15 -0400 Subject: [PATCH] fix robin bc plotting --- docs/src/symbolic_tutorials/mol_heat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/symbolic_tutorials/mol_heat.md b/docs/src/symbolic_tutorials/mol_heat.md index 98c6da6db..17f37af9f 100644 --- a/docs/src/symbolic_tutorials/mol_heat.md +++ b/docs/src/symbolic_tutorials/mol_heat.md @@ -152,7 +152,7 @@ using OrdinaryDiffEq sol = solve(prob,Tsit5(),saveat=0.2) # Plot results and compare with exact solution -x = (0:dx:1)[2:end-1] +x = (-1:dx:1)[2:end-1] t = sol.t using Plots