美文网首页
matlab 功率谱密度

matlab 功率谱密度

作者: sherlock303 | 来源:发表于2021-03-07 10:17 被阅读0次

    clear all

    fs=50;  %---------采样频率

    nfft=1024;%-------fft点数

    ser_target=20; %单边谱

    x=sqrt(ser_target/2*fs)*randn(1,10000); %noise history

    [px2,fx2]=pwelch(x,hanning(nfft),nfft/2,nfft,fs);

    semilogy(fx2,px2,'r')

    s_er=var(x)/fs*2 %单边谱验证

    相关文章

      网友评论

          本文标题:matlab 功率谱密度

          本文链接:https://www.haomeiwen.com/subject/enweqltx.html