How to analyze signal and make proper filter?
1 次查看(过去 30 天)
显示 更早的评论
I don't know how to analyze this signal and use proper filter for it. I work in matlab, function sptool. I don't know how to identify modulation pulse length, characteristic interval length, modulation signal frequency, carrier signal, modulation signal type, modulation type. Also, I don't know how to do time analyzation and power analyzation. Signal15.mat is the file
4 个评论
Mathieu NOE
2021-1-12
hello
the demo scripts that I sent you attached in my previous comment are already adaptedto your data
have you tested it ?
回答(1 个)
Birdman
2021-1-13
编辑:Birdman
2021-1-13
If you want to have a starting point, following code basically takes the psd of the signal, so that you will be able to obtain the frequency characteristics of your signal:
h1=spectrum.welch;
set(h1,'Windowname','Hann');
Fs=10000;%sampling frequency of your signal
set(h1,'OverlapPercent','66.7');
set(h1,'SegmentLength','512');
myPsd=psd(h1,simout-mean(simout),'Fs',Fs);
semilogx(myPsd.Frequencies,myPsd.Data);xlabel('Hz');
After this, you can apply the necessary filter or do any kind of operation based on your need.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spectral Estimation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!