Commit 45e174a7 authored by Cianciosa, Mark's avatar Cianciosa, Mark
Browse files

Merge branch 'tutorial_fix' into 'main'

Fix tutorial on taking derivatives.

See merge request !81
parents 4d3d6fd3 1e33ed3f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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.
 *
 * <hr>
 * @section tutorial_workflow Making workflows.