There is a precision issue with np.arange() when handling floating-point numbers. It is recommended to use np.linspace() instead. · Issue #583 · PyDMD/PyDMD · GitHub
More Web Proxy on the site http://driver.im/
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
When dealing with non-integer ‘dt’ intervals in DMD_Base.dmd_timesteps(), np.arange(t_start, t_end + dt, dt) will include an extra ‘t_end + dt’, and the ideal result should be [t_start, t_end].
It is recommended to use np.linspace() instead.