代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/130435/14194206
txt oracle表文件脚本.txt
------(1)TBADMIN
CREATE TABLE SYSTEM.TBADMIN ("ADMINID" NUMBER(10) NOT NULL , "USERNAME" VARCHAR2(50) , "PWD" VARCHAR2(50) , "EMAIL" VARCHAR2(100) , "TNAME" VARCHAR2(50) , "SYSPOWER" VARCHAR
www.eeworm.com/read/231691/14223220
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/231691/14223223
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/231691/14223243
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/230913/14269411
txt 类型.txt
http://yule.ww.to
Arg 类指针和整型
Bool
Char
Fxn 指向函数的指针
int
Lgint 有符号长整型
LgUns
Ptr 类指针
String zreo-terminate(\0)sequence(array)of characters
Uns
Void
www.eeworm.com/read/230855/14271808
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/230855/14271814
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/230855/14271857
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