ヒルベルト変換について(解析信号)
Show older comments
下記の人口データの最初の1000msの解析信号を求めて、瞬時振幅と瞬時位相を時間の関数としてプロットしたいのですが、
どのようにするか教えて頂きたいです。
解析信号の求めるというのはヒルベルト変換のことなのかfftかも良く分からないのですが、
分かる方いましたらコメント頂きたいです、
よろしくお願いいたします
f1=10;
f2=23;
fs=250; サンプル周波数
L=1000;
T=1/fs;
t=(0:L-1)*T;
S=10*sin(2*pi*f1*t+pi*1/2)+ 3*sin(2*pi*f2*t +pi*3/2); %人口データ
y=hilbert(smoothdata1); %ヒルベルト変換
p2=abs(y); %振幅
plot(t,p2); %プロット
Accepted Answer
More Answers (0)
Categories
Find more on Hilbert and Walsh-Hadamard Transforms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!