代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/430375/8753554
pat bitregres.pat
-- description generated by Pat driver v107
-- date : Fri Nov 30 12:41:42 2001
-- sequence : bitreg
-- input / output list :
in bitin B;
in clk3 B;
in enable3 B;
in rese
www.eeworm.com/read/430375/8753603
pat a_blockres.pat
-- description generated by Pat driver v107
-- date : Fri Sep 14 16:47:49 2001
-- sequence : a_block
-- input / output list :
in ai B;
in bi B;
in ci B;
out si B;
out
www.eeworm.com/read/430375/8753647
pat or8res.pat
-- description generated by Pat driver v107
-- date : Sun Oct 14 15:53:02 2001
-- sequence : or8
-- input / output list :
in on1 (7 downto 0) B;
in on2 (7 downto 0) B;
out oout
www.eeworm.com/read/429455/8807810
m e6422exer3.m
%
% Example 6: Generating a Moving Average (MA) Stochastic Process ....
%
%
clear all;
samp = 10000; % number of samples ...
%coeff = [0.1 0.2 0.3 0.4 0.5 0.4 0.3 0.2 0.1]*0.4 ;
www.eeworm.com/read/285689/8822948
h sequlist.h
/****************************/
/* 顺序表的头文件 */
/* 文件名sequlist.h */
/****************************/
#define MAXSIZE 100
typedef int datatype;
typedef struct{
datatype a[
www.eeworm.com/read/285689/8822954
h seqqueue.h
/*****************************/
/* 队列(顺序存储)的头文件 */
/* 文件名seqqueue.h */
/*****************************/
#define MAXSIZE 100
typedef int datatype;
typedef struct{
datatype a[M
www.eeworm.com/read/285689/8823042
h seqstack.h
/*****************************/
/* 栈(顺序存储)的头文件 */
/* 文件名seqstack.h */
/*****************************/
#define MAXSIZE 100
typedef int datatype;
typedef struct{
datatype a[
www.eeworm.com/read/384965/8826442
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/384965/8826449
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/384965/8826517
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