aboutsummaryrefslogtreecommitdiff
path: root/python/slope.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/slope.py')
-rwxr-xr-xpython/slope.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/slope.py b/python/slope.py
index 1ce9115..c545b9f 100755
--- a/python/slope.py
+++ b/python/slope.py
@@ -163,7 +163,7 @@ def plot_curve(MY, PX):
# Fit with polyfit
m, c = np.polyfit([MY - y*PX for y in ych], zch, 1)
print('gradient =', m, 'intercept =', c)
- print('MY =', MY)
+ # print('MY =', MY)
fig, ax = plt.subplots()
line1, = ax.plot([MY - y*PX for y in ych], zch)