代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/189239/8482898
m compconv2.m
% Program 5-10
% compconv2.m
%
% Function to perform convolution between signal and filter
%
% Programmed by H.Harada and M.Okita
%
function [iout, qout] = compconv2(idata, qdata, filter)
www.eeworm.com/read/189239/8482902
m despread.m
% Program 5-8
% despread.m
%
% Data despread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = despread(idata, qdata, code1)
% *************************************
www.eeworm.com/read/189239/8482919
m spread.m
% Program 5-7
% spread.m
%
% Data spread function
%
% Programmed by M.Okita and H.Harada
%
function [iout, qout] = spread(idata, qdata, code1)
% *******************************************
www.eeworm.com/read/390009/8489300
c parse.c
/****************************************************/
/* 文件: parse.c */
/* TINY编译器的语法分析执行程序 */
/****************************************************/
#inc
www.eeworm.com/read/389823/8497034
m frm_intleav.m
% frm_intleav(input)
% determines hte output sequence of a binary interleave encoder
function [output,colsize] = frm_intleav(input1,input2)
colsize = size(input1,2)/input2;
for count1 = 1:input2
o
www.eeworm.com/read/188596/8526056
cpp 181.cpp
/*
181. X-Sequence
Accepted 31 ms 61 kb
*/
#include
int main(void)
{
long *A, ap, bt, gm, M, s1, loca;
long K, i, j;
A = new long[1001];
scanf("%ld %ld %ld %ld %ld %ld", &
www.eeworm.com/read/289731/8532021
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/289731/8532032
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(