代码搜索:Raspberry Pi

找到约 10,000 项符合「Raspberry Pi」的源代码

代码结果 10,000
www.eeworm.com/read/163777/10145883

m ex031200.m

n = -5:10; x = sin(pi*n/2); k = -100:100; w = (pi/100)*k; % frequency between -pi and +pi X = x * (exp(-j*pi/100)).^(n'*k); % DTFT of x % signal decomposition [xe,xo,m] = evenodd(x,n);
www.eeworm.com/read/163777/10145947

m program_4_1.m

% Program 4_1 % Generate the filter coefficients h1 = ones(1,5)/5; h2 = ones(1,14)/14; w = 0:pi/255:pi; % Compute the frequency responses H1 = freqz(h1, 1, w); H2 = freqz(h2, 1, w); % Compute
www.eeworm.com/read/163643/10151797

m zyxuan.m

syms t j f1=0.5*(exp(j*pi*t)+exp(-j*pi*t)) f2=-0.5*j*(exp(j*pi*t)-exp(-j*pi*t)) subplot(211) ezplot(f1,[-5,5]) subplot(212) ezplot(f2,[-5,5])
www.eeworm.com/read/359349/10153886

m bartlett.m

% Name:Bartlett.m clear L=input('Type in the length N='); n=0:L-1; w=(2*n/(L-1)).*(u(n)-u(n-(L-1)/2))+(2-2*n/(L-1)).*(u(n-(L-1)/2)); x=0.4*sin(0.4*pi*(n-ceil(L/2)+eps+1))./(0.4*pi*(n-ceil(L/2)+ep
www.eeworm.com/read/359349/10153894

m hanning.m

% Name:Hanning.m clear,close all; L=input('Type in the length N='); n=0:L-1; w=0.5*(1-cos(2*pi*n/(L-1))).*(u(n)-u(n-L)); x=0.4*sin(0.4*pi*(n-ceil(L/2)+eps+1))./(0.4*pi*(n-ceil(L/2)+eps+1)).*w; %
www.eeworm.com/read/359349/10153906

m blackman.m

% Name:Blackman.m clear L=input('Type in the length N='); n=0:L-1; w=(0.42-0.5*cos(2*pi*n/(L-1))+0.08*cos(4*pi*n/(L-1))).*(u(n)-u(n-L)); x=0.4*sin(0.4*pi*(n-ceil(L/2)+eps+1))./(0.4*pi*(n-ceil(L/2
www.eeworm.com/read/359349/10153941

m experiment_3_ctft.m

%================================================================== % Name:experiment3_1_ctft %================================================================== clear,close all, p=0.01;
www.eeworm.com/read/359349/10153953

m fir_design_win1.m

% Name:FIR_design_win1.m clear,close all; wp=input('Type in the passband edge frequency (in Radian) wp='); ws=input('Type in the passband edge frequency (in Radian) ws='); deltaw=input('Type in th
www.eeworm.com/read/359349/10153970

m hamming.m

% Name:Hamming.m clear L=input('Type in the length N='); n=0:L-1; w=(0.54-0.46*cos(2*pi*n/(L-1))).*(u(n)-u(n-L)); x=0.3*sin(0.3*pi*(n-ceil((L-1)/2)+eps))./(0.3*pi*(n-ceil((L-1)/2)+eps)).*w; %===
www.eeworm.com/read/359349/10154014

m example4_5.m

%========================================================================== % 程序名:example4_5 % %========================================================================== %