代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/452710/7436028

h tcp.h

/* tcp.h - TCP_HLEN, SEQCMP */ typedef long tcpseq; /* * SEQCMP - sequence space comparator * This handles sequence space wrap-around. Overlow/Underflow makes * the result below correct (
www.eeworm.com/read/451716/7457673

m mbsfnpseudoranseq.m

function cMBSFN = MBSFNpseudoranseq(Nidmbsf,Ns) % 生成用于MBSFN参考信号的伪随机序列; Nc=1600; %见协议36.211第75页规定; n = 2 * 6 * 110 + 1 ;% 设置伪随机序列cMBSFN的长度,为了适用于MBSFN参考信号序列的长度:6*NmaxDLRB,NmaxDLRB是下行链路最大可占用资源块数,为110
www.eeworm.com/read/451707/7457884

m mbsfnpseudoranseq.m

function cMBSFN = MBSFNpseudoranseq(Nidmbsf,Ns) % 生成用于MBSFN参考信号的伪随机序列; Nc=1600; %见协议36.211第75页规定; n = 2 * 6 * 110 + 1 ;% 设置伪随机序列cMBSFN的长度,为了适用于MBSFN参考信号序列的长度:6*NmaxDLRB,NmaxDLRB是下行链路最大可占用资源块数,为110
www.eeworm.com/read/448535/7531417

m fblp.m

function [a,sigma] = fblp(x, n) % % Forward-backward linear predictor % % function [a,sigma] = fblp(x,n) % % Given a sequence of data in the columns vector x, % return the coefficients of an n
www.eeworm.com/read/448535/7531477

m fromcrt.m

function [x,gamma] = fromcrt(y,m,gammain) % % Given a sequence [y1,y2,\ldots,y2] that is a representation % of an integer x in CRT form, convert back to x. % % function x = fromcrt(y,m) % % y
www.eeworm.com/read/448529/7531892

m conv_tp.m

function [y,H]=conv_tp(h,x) % Linear Convolution using Toeplitz Matrix % ---------------------------------------- % [y,H] = conv_tp(h,x) % y = output sequence in column vector form % H = Toeplitz
www.eeworm.com/read/448529/7531919

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 = impu
www.eeworm.com/read/448529/7532026

m ex020900.m

% Example 2.9 % % x(n)=[3,11,7,0,-1,4,2]; nx = [-3:3] % y(n)=x(n-2)+w(n) % ryx = cross(y,x) % % noise sequence 1 x = [3, 11, 7, 0, -1, 4, 2]; nx=[-3:3]; % given signal x(n) [y,ny] = sigshift(x
www.eeworm.com/read/448413/7533766

m triang_win.m

function w = triang_win (n) % % function w = triang_win (n) % It calculates the n points triangular window. % % n : window length. % % w : triangular window. if rem(n,2) % I
www.eeworm.com/read/448259/7535794

m exa1_15.m

% exa1-15_slope_d.m for example 1-15 % slope sequence clear all; N=32; k=4; B=3; x=[zeros(1,k) ones(1,N-k)]; for i=1:N x(i)=B*x(i)*(i-k); end xn=0:N-1; stem(xn,x) axis([-1 32 0 90])