Skip to content
Discussion options

You must be logged in to vote

You might want to try pre-processing a new drive cycle with more evenly spaced points (especially including more points between 0 and 85000) e.g. using interp1d. The interpolant can sometimes be weird if the spacing is uneven
e.g. something like

new_t = np.arange(0,t[-1])
new_I = interp1d(t,I)(new_t)

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@MarPlan
Comment options

Comment options

You must be logged in to vote
1 reply
@MarPlan
Comment options

Answer selected by MarPlan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants