diff options
Diffstat (limited to 'python')
| -rwxr-xr-x | python/slope.py | 2 | 
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) | 
