波信号处理(周期)
检测波形信号中 1 个周期的最佳方法是什么?
有人有特定的算法来做到这一点吗?你知道你在哪里找到它的吗?
我知道 fft,但我不知道如何让它给我波周期(时间位置)。
将信号分成周期!
我想要 pascal、matlab...
What is the best way to detect 1 period in a wave signal?
Does somebody have a specific algorithm to do that? And do you know where you found it?
I know fft, but I don't know how make it give me the wave period (position at time).
Split the signal in periods!
I'd like pascal, matlab...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能根本不是最好的方法,但却是一种可以找到答案的方法
周期信号的周期是展开
阶段。这是Matlab
(实际上是 Octave)代码:
其他需要查看的内容 acf,
fft。
This is probably not at all the best way, but one way that can work to find the
period of a periodic signal is to unwrap
the
phase. Here is Matlab
(actually Octave) code:
Other thingns to look at acf,
fft.