代码搜索:Random

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

代码结果 10,000
www.eeworm.com/read/201015/15418283

c random.c

/* random.c - Zero-mean random noise */ #define USE_DATA 0 #if USE_DATA /* Use random data file as input */ #pragma CODE_SECTION(random, "lms_code"); #pragma DATA_SECTION(randdata,
www.eeworm.com/read/200680/15427591

cpp random.cpp

#include "StdAfx.h" #include "Random.h" #include "math.h" #define PI 3.14159265 Random::Random(void) { srand((unsigned int)time(NULL)); } Random::~Random(void) { } // 生成(0,1)区间内服从均匀分布的
www.eeworm.com/read/200680/15427602

h random.h

#pragma once class Random { public: Random(void); public: ~Random(void); public: // 生成(0,1)区间内服从均匀分布的随机数 double _random(void); // 生成在(min,max)区间内服从均匀分布的随机数 double AverageRandom(doub
www.eeworm.com/read/113909/15444345

cgi random.cgi

www.eeworm.com/read/113909/15444372

o random.o

www.eeworm.com/read/113909/15444384

c random.c

/* random.c By Bill Kendrick, ported to NT by Patrick Stepp New Breed Software, stepp@adelphia.net February 14, 1996, May 30, 1996 Randomly picks one line out of a file and disp
www.eeworm.com/read/113905/15444533

c random.c

/* random.c By Bill Kendrick New Breed Software February 14, 1996, May 30, 1996 Randomly picks one line out of a file and displays it. Based on the "random" directive from
www.eeworm.com/read/113554/15453386

asm random.asm

DATA SEGMENT CC DB '+' ww db '-' GG DB '=' II DB 0DH,0AH,'$' AA DB 5 DUP(?) www dw 0 ghh db '0',0dh,0ah,'$' bnm dw 0 DATA ENDS STACK SEGMENT D
www.eeworm.com/read/113242/15466753

c random.c

#include #include void main(void) { int i; printf("Values from rand\n"); for (i = 0; i < 100; i++) printf("%d ", rand()); printf("Values from rando
www.eeworm.com/read/112466/15484770

h random.h

/**************************************************************************** File Name : random.h Purpose : header file for random number generator (random.c) Release : Version 1.0 Dat