代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/139332/5800273

hpp next_traits.hpp

/*============================================================================= Copyright (c) 2003 Joel de Guzman Use, modification and distribution is subject to the Boost Software Licen
www.eeworm.com/read/490775/6442356

m cyclic_redundancy_code.m

实现循环冗余编码 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % % 该函数通过输入信号序列和相应选择L阶CRC生成多项式 % % 生成循环冗余检错码(CRC
www.eeworm.com/read/292241/8365731

m juanji_zxiangguan.m

%comprasion between signal shift 2 and shift 4 x=[3,11,7,0,-1,4,2];nx=[-3:3] [y,ny]=sigshift(x,nx,2); %y=x;ny=nx+2; w=randn(1,length(y)); %nw=ny; nw=[-3:3] [y,ny]=sigadd(y,ny,w,nw); %y=y+w;
www.eeworm.com/read/292241/8365738

asv juanji_zxiangguan.asv

x=[3,11,7,0,-1,4,2];nx=[-2:4] [y,ny]=sigshift(x,nx,2); %y=x;ny=nx+2; w=randn(1,length(y)); %nw=ny; nw=[-3:3] [y,ny]=sigadd(y,ny,w,nw); %y=y+w; [x,nx]=sigfold(x,nx); %nx=-nx; %x=-x [rxy,n
www.eeworm.com/read/291692/8403242

dd

p=2,m=5,the pseudo-random sequence with the length 31 as following: 00001 00101 10011 11100 01101 11010 1
www.eeworm.com/read/291692/8403289

cpp smallkasamimain.cpp

#include "SmallKasami.cpp" #include #include void main() { //int i,p,m,mSeqLength,sequence[1000]; //complex complex1; int i,t,m1; int *kasami_set1;
www.eeworm.com/read/192089/8407567

c alg38.c

#include #include #include /* generates: original element sequence: 0 1 1 2 3 5 8 13 21 34 sequence after applying remove_if < 10: 13 21 34
www.eeworm.com/read/192089/8407579

c alg36.c

#include #include #include int main() { vector< int, allocator > vec; for ( int ix = 0; ix < 20; ix++ ) vec.push_back( ix ); random_shuffle(
www.eeworm.com/read/192089/8407623

c alg49.c

#include #include #include /* generates: original element sequence of first container: 0 1 2 3 4 5 6 7 8 9 original element sequence of second cont
www.eeworm.com/read/191613/8426196

cpp ex0618.cpp

// Programming with C++, Second Edition, by John R. Hubbard // Copyright McGraw-Hill, 2000 // Example 6.18 on page 139 // The Bubble Sort #include // defines the cin and cout obj