代码搜索:sequence
找到约 10,000 项符合「sequence」的源代码
代码结果 10,000
www.eeworm.com/read/102512/15779692
h kasami.h
#ifndef _KASAMI_H
#define _KASAMI_H
/*
* $Log: kasami.h,v $
* Revision 1.1 2000/05/03 14:30:04 bjc97r
* Initial revision
*
*/
#include "mseq.h"
typedef struct {
Mseq *mseq0; // 1st m-seque
www.eeworm.com/read/102394/15783129
texi qrng.texi
@cindex quasi-random sequences
@cindex low discrepancy sequences
@cindex Sobol sequence
@cindex Niederreiter sequence
This chapter describes functions for generating quasi-random sequences
in arbitrar
www.eeworm.com/read/432664/8583626
mht usaco 2_1_3 sorting a three-valued sequence 题解_leokan的blog.mht
From:
Subject: =?gb2312?B?VVNBQ08gMi4xLjMgU29ydGluZyBhIFRocmVlLVZhbHVlZCBTZXF1ZW5jZSA=?=
=?gb2312?B?zOK94l9sZW9rYW61xGJsb2c=?=
Date: Wed, 30 Jan 2008 16:28:32 +0
www.eeworm.com/read/343535/11942690
pdf ofdm system channel estimation using time-domain training sequence for mobile reception of digitalterrestrial broadcasting.pdf
www.eeworm.com/read/241286/4560962
sql performance_model.sql
drop sequence security_user_seq;
create sequence security_user_seq start with 1000;
drop sequence security_group_seq;
create sequence security_group_seq start with 1000;
drop sequence security_rol
www.eeworm.com/read/168845/5434205
rst integralsequencewrapper.rst
.. Sequences/Concepts//Integral Sequence Wrapper |90
Integral Sequence Wrapper
=========================
Description
-----------
An |Integral Sequence Wrapper| is a class template that prov
www.eeworm.com/read/417857/2097700
ihelp proteinmotifsearch.ihelp
Mandatory qualifiers:
[-sequence] sequence Sequence USA
[-motifs] string Motifs file
Optional qualifiers: (none)
Advanced qualifiers: (none)
www.eeworm.com/read/247617/4475395
idl idltest.idl
module IdlTest {
typedef sequence< sequence > LongSeqSeq1;
typedef sequence< long > _LongSeq;
typedef sequence< _LongSeq > LongSeqSeq2;
typedef long ttt[5];
struct ppp {
www.eeworm.com/read/229812/4738858
c dtor02.c
#include "fail.h"
#include
unsigned sequence;
struct O {
~O(){
if( sequence != 2 ) fail(__LINE__);
++sequence;
}
};
struct B {
~B(){
if( sequence != 3 ) fail(
www.eeworm.com/read/229812/4739147
c dtor03.c
#include "fail.h"
#include
unsigned sequence;
struct O {
~O(){
if( sequence != 2 ) fail(__LINE__);
++sequence;
}
};
struct B {
B() {
if( sequence != 1 ) fail(