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

📄 demo4.m

📁 这是一个 York大学开发的FDTD代码。很好用的工具
💻 M
字号:
% uses setup from demo0disp('FFT of truncated Constant cosine-waves')disp('Generate time and frequency steps')Ts=Tp/(N)fs=1/Tsf=linspace(0,fs*(N-1)/N,N);disp('Generate time steps for one period (t)');t=linspace(0,Tp*(N-1)/N,N);disp('Generate time sequence (x) and plot it against time (t)')
disp('Frequencies:')
f0x=cos(2*pi*f0'*t);
x=ones(1,size(f0,2))*x;
plot(t,x)
title('Sum of Sine waves')xlabel('Time')input('Any key to continue')disp('Generate DFT (X) of time series (x) and Compare with Fourier transform of continous data');XD=2*Ts*fft(x);XD(1)=0.5*XD(1);plot(f/fs,abs(XD),'o',f0/fs,ones(1,size(f0,2)),'+')title('Discrete Fourier Transform Spectra (truncation effects)')xlabel('Frequency/fs')ylabel('abs(X)')

⌨️ 快捷键说明

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