⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 icft.m

📁 现代信号处理里的一些内容
💻 M
字号:
function [ft,t]=ICFT(Fw,dw,w0);
if nargin==1
    dw=2*pi;
    w0=0;
elseif nargin==2
    w0=0;
end
[ft,t]=CFT(conj(Fw),dw,w0);
ft=conj(ft)./(2.*pi);
N=length(Fw);
w=w0+[0:N-1]*dw;
f=w./(2.*pi);
if nargout==0
     % Plot single-sided amplitude spectrum.
    subplot(2,2,1);
    plot(f,abs(Fw));
    title('双边功率谱密度幅度');
    xlabel('Frequency (Hz)');
    ylabel('|F(f)|');
    grid on;
    subplot(2,2,2);
    plot(f,angle(Fw));
    title('双边功率谱密度相位');
    xlabel('Frequency (Hz)');
    ylabel('\phi(f)');
    grid on;
    subplot(2,2,3);
    plot(t,abs(ft));
    title('信号时域波形幅度');
    xlabel('Time(s)');
    ylabel('|f(t)|');
    grid on;
    subplot(2,2,4);
    plot(t,angle(ft));
    title('信号时域波形相位');
    xlabel('Time(s)');
    ylabel('\phi(t)');
    grid on;
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -