From 5f49523d451540f921bc6f2a090cd9c9c5530da6 Mon Sep 17 00:00:00 2001 From: Humphrey Yang <39026988+HumphreyYang@users.noreply.github.com> Date: Thu, 27 Jul 2023 21:24:47 +1000 Subject: [PATCH] Update lectures/sympy.md Co-authored-by: Smit Lunagariya --- lectures/sympy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/sympy.md b/lectures/sympy.md index 3d3db179..5307fa03 100644 --- a/lectures/sympy.md +++ b/lectures/sympy.md @@ -313,7 +313,7 @@ sum_xy To evaluate the sum, we can `lamdify` the formula. -The lamdified expression can take vectors as input for $x$ and $y$ and compute the result +The lamdified expression can take numeric values as input for $x$ and $y$ and compute the result ```{code-cell} ipython3 sum_xy = lambdify([x, y], sum_xy)