代码搜索结果

找到约 10,000 项符合 9 的代码

algo9-9.c

/* algo9-9.c 检验bo9-7.c的程序 */ #include"c1.h" #define NULLKEY 0 /* 0为无记录标志 */ #define N 10 /* 数据元素个数 */ typedef int KeyType; /* 设关键字域为整型 */ typedef struct { KeyType key; int ord;

ch9_9.cpp

//********************* //** ch9_9.cpp ** //********************* #include double* fn(const double* pd) { static double ad=32; ad+=*pd; cout

samp9_9.m

%Samp9_9 clf;h=fir1(30,0.2,boxcar(31)); %设计30阶截止频率为0.2的FIR滤波器 r=randn(16384,1); %产生白噪声随机向量 x=filter(h,1,r); %对随机向量滤波 psd(x,1024,10000,kaiser(512,5),0,0.95); %采用Kaiser窗进行功率谱估计 xlab

chapter9-9.cpp

//文件名:CHAPTER9-9.cpp #include #include #if _MSC_VER > 1020 // if VC++ version is > 4.2 using namespace std; // std c++ libs implemented in std #endif int main( ) { se

9-9-1.tex

% 9-9-1.tex \documentclass{article} \usepackage{amsmath} \usepackage{CJK} \begin{document} \begin{CJK*}{GBK}{song} \CJKtilde \begin{equation} \begin{split} (a+b)^2 &=a^2+b^2+2ab\\ (a+b

example9_9.m

%例9-9,example9_9 %设计条件:wp=0.2pi;ws=0.3pi;Rp=0.25dB;Ar=50dB; N=60;alpha=(N-1)/2;L=0:N-1;wL=(2*pi/N)*L; Hrs=[ones(1,7),0.5,0.1,zeros(1,43),0.1,0.5,ones(1,6)]; %理想滤波器振幅响应抽样 Hdr=[1,1,0,0];wdl=

examp9_9.m

syms x y; f=x^2+x*y/3; P=int(int(f,x,0,1/2),y,0,1/2)