Skip to content

Commit

Permalink
Merge pull request #18 from kavanase/patch-1
Browse files Browse the repository at this point in the history
Fix "3-point least-squares" typo in `print_results`
  • Loading branch information
lucydot authored Apr 29, 2020
2 parents ca83303 + cc0cded commit f0bb559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion effmass/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def print_results(segment, data, settings, polyfit_order=None):
print(segment.band_type, segment.direction)
print("3-point finite difference mass is {:.2f}".format(
segment.finite_difference_effmass()))
print("3-point parabolic mass is {:.2f}".format(
print("5-point parabolic mass is {:.2f}".format(
segment.five_point_leastsq_effmass()))
try:
print("weighted parabolic mass is {:.2f}".format(
Expand Down

0 comments on commit f0bb559

Please sign in to comment.