代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/270993/11013520
c random.c
/* randgen.c => contains random number generator and related utilities
including advance_random, warmup_random, random, randomize
*/
#include "const.h"
#include "type.h"
#include "extern.h"
#inclu
www.eeworm.com/read/270669/11030153
c random.c
/* Maintain source of random numbers for cryptographic keys, etc
* This is inherently machine dependent code
*/
#include "stdio.h"
#include
#include "global.h"
#include "timer.h"
#inc
www.eeworm.com/read/416321/11033168
inl random.inl
//random.inl 随机函数(方法)定义
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _RANDOM_INL
#define _RANDOM_INL
//产生一个[0,1]区间内均匀分布伪随机数
inline double
rand_01_One(double& seed)
{
www.eeworm.com/read/416321/11033188
h random.h
//random.h 宏定义及随机函数(方法)原型头文件
// Ver 1.0.0.0
// 版权所有(C) 何渝, 2002
// 最后修改: 2002.5.31.
#ifndef _RANDOM_H
#define _RANDOM_H
#define RandCoef2053 2053
#define RandCoef13849 13849
#define MOD
www.eeworm.com/read/416320/11033264
h random.h
#include
#include
#include
#include
#include
#include
#ifndef RANDOM_H
#define RANDOM_H
#define IM1 2147483563
#define IM2 214
www.eeworm.com/read/416320/11033275
cpp random.cpp
#include "random.h"
/*
Long period (? 2 \Theta 10 18 ) random number generator of L'Ecuyer with Bays璂urham shuffle
and added safeguards. Returns a uniform random deviate between 0.0 and 1.0 (excl
www.eeworm.com/read/416320/11033297
h random.h
#include
#include
#include
#include
#include
#include
#ifndef RANDOM_H
#define RANDOM_H
#define IM1 2147483563
#define IM2 214
www.eeworm.com/read/416320/11033300
cpp random.cpp
#include "random.h"
/*
Long period (? 2 \Theta 10 18 ) random number generator of L'Ecuyer with Bays璂urham shuffle
and added safeguards. Returns a uniform random deviate between 0.0 and 1.0 (excl
www.eeworm.com/read/470696/6905955
mat random.mat
www.eeworm.com/read/470800/6908619
cpp random.cpp
// random.cpp -- random access to a binary file
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
c