Topic on User talk:Cheldra
Jump to navigation
Jump to search
This page shows the changes between two versions of a post by Cheldra in the topic "Thanks and welcome" on User talk:Cheldra.
You can see other versions of this post at its history page.
Line 6: | Line 6: | ||
def post_process_curve(pre, x=[0, 5, 40, 10000], y=[0, 14, 40, 10000]): | def post_process_curve(pre, x=[0, 5, 40, 10000], y=[0, 14, 40, 10000]): | ||
− | + | for i in range(len(x)): | |
− | + | if pre < x[i]: | |
− | + | gradient = (y[i] - y[i - 1])/(x[i] - x[i - 1]) | |
− | + | progress = pre - x[i - 1] | |
− | + | return y[i - 1] + gradient*progress |