You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Program uses three parameters: the interval edges (named as start, stop) and interval subdivision parameter (step) but this last parameter is misleading. One could assume that they could go from start to stop exactly by steps but it is not the case, consider the following input: start=0.1, stop=0.2, step=9e-3.
The step parameter could be considered as a "basis" for "calculations" step, for example, as following
Program uses three parameters: the interval edges (named as
start
,stop
) and interval subdivision parameter (step
) but this last parameter is misleading. One could assume that they could go fromstart
tostop
exactly bystep
s but it is not the case, consider the following input:start=0.1
,stop=0.2
,step=9e-3
.The
step
parameter could be considered as a "basis" for "calculations" step, for example, as followingIn that case
real_step
will be close tostep
but less than it and always gives integer number of steps to come fromstart
tostop
.P.S. The name
stop
for end of integration interval is a bit unfortunate, it is more likely to be named asend
than current one.The text was updated successfully, but these errors were encountered: