From 1d18ee7d240c3bbfb0219f83f7ab9a02de31ecb3 Mon Sep 17 00:00:00 2001 From: Hezy Amiel Date: Tue, 31 Jan 2023 20:06:02 +0200 Subject: [PATCH] Update vdP.py --- vdP.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vdP.py b/vdP.py index db2d530..29a9b5d 100644 --- a/vdP.py +++ b/vdP.py @@ -27,7 +27,7 @@ def fun(Rs): R2 = 89 # plot the fuction -Rs = np.linspace(0, 10*np.sqrt(R1*R2), 200) +Rs = np.linspace(0, 10 * np.sqrt(R1 * R2), 200) # Rs = np.linspace(0, 10000, 200) plt.plot(Rs, fun(Rs)) plt.axhline(color="r")