From 1e33ed3f90e01c300c9a0438a67ca57a10e428f4 Mon Sep 17 00:00:00 2001 From: cianciosa Date: Mon, 8 Sep 2025 11:38:09 -0400 Subject: [PATCH] Fix tutorial on taking derivatives. --- graph_docs/tutorial.dox | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graph_docs/tutorial.dox b/graph_docs/tutorial.dox index aa25e24..f3a48d6 100644 --- a/graph_docs/tutorial.dox +++ b/graph_docs/tutorial.dox @@ -151,10 +151,12 @@ void run_tutorial() { * also take several variations of this. * @code auto dydm = y->df(m); +auto dydb = y->df(b) auto dydy = y->df(y); auto dydb = y->df(m*x); @endcode - * The results will be @f$0.4@f$, @f$x@f$, @f$1@f$, and @f$0@f$ respectively. + * The results will be @f$0.4@f$, @f$x@f$, @f$1@f$, @f$1@f$, and @f$1@f$ + * respectively. * *
* @section tutorial_workflow Making workflows. -- GitLab