代码搜索结果
找到约 10,000 项符合
Raspberry Pi 的代码
program_11_5.m
% Program 11_5
% Development of an AR model of an FIR filter
%
colordef black
b = remez(20, [0 0.5 0.6 1], [1 1 0 0]);
[h,w] = freqz(b,1,512);
[d,p0] = lpc(b,30);
[h1,w] = freqz(p0,d,512);
p
program_11_5.m
% Program 11_5
% Development of an AR model of an FIR filter
%
colordef black
b = remez(20, [0 0.5 0.6 1], [1 1 0 0]);
[h,w] = freqz(b,1,512);
[d,p0] = lpc(b,30);
[h1,w] = freqz(p0,d,512);
p
program_11_5.m
% Program 11_5
% Development of an AR model of an FIR filter
%
colordef black
b = remez(20, [0 0.5 0.6 1], [1 1 0 0]);
[h,w] = freqz(b,1,512);
[d,p0] = lpc(b,30);
[h1,w] = freqz(p0,d,512);
p
program_11_5.m
% Program 11_5
% Development of an AR model of an FIR filter
%
colordef black
b = remez(20, [0 0.5 0.6 1], [1 1 0 0]);
[h,w] = freqz(b,1,512);
[d,p0] = lpc(b,30);
[h1,w] = freqz(p0,d,512);
p
program_03_01.m
% Program 3_1
% Discrete-Time Fourier Transform Computation
%
% Read in the desired length of DFT
colordef black;
k = input('Number of frequency points = ');
% Read in the numerator and denomi
2_2.cpp
#include
#include
const double pi = 3.1415926;
void main()
{
double radius1, radius2;
cout radius1 >>radius2;
cout
exa060603.m
%----------------------------------------------------------------------------
% exa060603.m, for example 6.6.3;
% To design IIR Butteworth bandstop DF by analog-lowpass,
% -------------------------
exa011004_sinc.m
%-----------------------------------------------------------------
% exa011004_sinc.m, for example 1.10.4
% to generate the sinc function.
% 产生一 sinc 函数;
%-----------------------
exa050501.m
%------------------------------------------------------------------------
% exa050501.m, for example 5.5.1 and fig5.5.1
% to explain the spectra factorization
%------------------------------------
exa060701_3.m
%-----------------------------------------------------------------------------
% exa060701_3.m , for example 6.7.1 and 6.5.1
% to test butter.m
%---------------------------------------------------