代码搜索:linear_fft
找到约 29 项符合「linear_fft」的源代码
代码结果 29
www.eeworm.com/read/402090/11543234
m linear_fft.m
% File: linear_fft.m
function [fftx,freq] = linear_fft(x,n,ts)
% This function takes n (must be even) time domain samples (real or
% complex) and finds the PSD by taking (fft/n)^2. The two sided
%
www.eeworm.com/read/148745/12431405
asv linear_fft.asv
%file:linear_fft.m
% this function takes n (must be even)time domain samples(real or complex)
% and finds the psd by taking (fft/n)^2
% the two sided spectrum is produced by shifting the psd.
% th
www.eeworm.com/read/438990/7718415
m linear_fft.m
function [fftx,freq]=linear_fft(x,n,ts)
y=zeros(1,n);
for k=1:n
freq(k)=(k-1-(n/2))/(n*ts);
y(k)=x(k)*((-1.0)^(k+1));
end
fftx=fft(y)/n;
www.eeworm.com/read/148745/12431397
m linear_fft.m
function [fftx,freq]=linear_fft(x,n,ts)
y=zeros(1,n);
for k=1:n
freq(k)=(k-1-(n/2))/(n*ts);
y(k)=x(k)*((-1.0)^(k+1));
end
fftx=fft(y)/n;
www.eeworm.com/read/390512/8461879
m jakes_filter.m
% File: Jakes_filter.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with W
www.eeworm.com/read/438990/7718417
m jakes_filter.m
function [impw]=jakes_filter(fd)
n=512;nn=2*n;
fs=0:fd/64:fd;
H=zeros(1,n);
for k=1:(n/8+1)
jpsd(k)=1/((1-((fs(k))/fd)^2+eps)^0.5);
if(jpsd(k))>1000
jpsd(k)=1000;
end
www.eeworm.com/read/148745/12431392
asv sample1.asv
%注意:调用子函数时一定要在另外的文件下面调用,而且该子函数的文件名一定要用子函数名,
%就是说只要写好函数自己保存就可以了,文件会自动生成相应的正确名称。
%file c7_jakes.m
%generate and test the impulse response of the filter
fd=100; %maxim
www.eeworm.com/read/148745/12431408
m sample1.m
%注意:调用子函数时一定要在另外的文件下面调用,而且该子函数的文件名一定要用子函数名,
%就是说只要写好函数自己保存就可以了,文件会自动生成相应的正确名称。
%file c7_jakes.m
%generate and test the impulse response of the filter
fd=100; %maxim
www.eeworm.com/read/148745/12431415
asv jakes_filter.asv
%file:jakes_filter.m
function [impw]=jakes_filter(fd)
n=512;nn=2*n;
fs=0:fd/64:fd;
H=zeros(1,n);
for k=1:(n/8+1)
jpsd(k)=1/((1-((fs(k))/fd)^2)^0.5);
if(jpsd(k))>1000
jpsd(k)=
www.eeworm.com/read/390512/8461866
m linear_fft.m
% File: linear_fft.m
% Software given here is to accompany the textbook: W.H. Tranter,
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of
% Communication Systems Simulation with Wir