代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/253867/12180034
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/253867/12180146
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/151561/12201087
m evenodd.m
function [xe,xo,m]=evenodd(x,n)
% Real signal decomposition into even and odd parts
%-------------
% [xe,xo,m]=evenodd(x,n)
%
if any (imag(x)~=0)
error('x is not a real sequence')
end
m=
www.eeworm.com/read/151561/12201101
m ovrlpsav.m
function [y]=ovrlpsav(x,h,N)
% Overlap - Save method of block convolution
% ----------------
% [y]=ovrlpsav(x,h,N)
% y=output sequence
% x=input sequence
% h=impulse response
% N=block length
www.eeworm.com/read/151090/12235767
m despread.m
% Program CDMA-8
%
% despread.m
%
% Data despread function
%
function [iout,qout] = despread(idata,qdata,code1)
% --------------------------------------------------------------------------
www.eeworm.com/read/151090/12235783
m spread.m
% Program CDMA-7
%
% spread.m
%
% Data spread function
%
function [iout,qout] = spread(idata,qdata,code1)
% -----------------------------------------------------------
% idata : ich dat
www.eeworm.com/read/339236/12248715
m 产生gold序列程序子函数.m
function [seq]=ss_mlsrs(connections);
% [seq]=ss_mlsrs(connections)
% SS_MLSRS generates the maximal length shift register sequence when the
% shift register connections are given as input to th
www.eeworm.com/read/339233/12248885
m 产生gold序列程序子函数.m
function [seq]=ss_mlsrs(connections);
% [seq]=ss_mlsrs(connections)
% SS_MLSRS generates the maximal length shift register sequence when the
% shift register connections are given as input to th
www.eeworm.com/read/150725/12268880
m sigevenodd.m
function [xeven,xodd,m]=sigevenodd(x,n)
%Real signal decomposition into even and odd parts
if (imag(x)~=0)
error('x is not a real sequence')
end
m=fliplr(n);
m1=min([m,n]);m2=max([m,n]);m=m
www.eeworm.com/read/150725/12268883
m cirshift.m
function y=cirshift(x,m,N);
%x:Input sequence
%m:Shift number
%N:Show length
if length(x)>N
error('N must be greater then length(x)');
end
x=[x zeros(1,N-length(x))];
n=[0:N-1];
n=sigmo