Skip to content

修复对 Corresponding time window 错误的截断

徐闯 requested to merge fix/origintime into master

在整理 juno/laser 下 ridge 方法的代码,检查波形对齐时发现,我之前改动 FullWriter 240f7acb 错误的将 np.max 改为了 max,使得 t_s 输出时被截断。

原本 np.max(n, 0) = np.max(n, axis=0) = n,我误当成了让 n 与 0 比大小,现在都纠正到 n。

/cc @heroxbd

Merge request reports