Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在实现一个滑动窗口作为 LPF 来平滑我的数据。
只要我的窗口大小为W,我的最终W元素(窗口从头到尾滑动)或第一个W元素(窗口从头到尾滑动)将无法平滑。
W
一个人如何与他们打交道?
有没有好的方法来处理这个?
每种过滤器都会缩短您的数据。认为它更短但更好!
我可以提供的一个提示是,如果您有索引,请考虑将每一边修剪为W/2,而不是W切掉正面或背面。这种方式更准确,因为您的新索引反映了平滑。
W/2