代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/473584/6846733
c random.c
/*
*
* Rand.c
*
* - linear and additive congruential random number generators
* (see R. Sedgewick, Algorithms, Chapter 35)
*
* Implementation: R. Fuchs, EMBL Data Library, 1991
*
*/
#inc
www.eeworm.com/read/473227/6849365
hpp random.hpp
/*
* Bayes++ the Bayesian Filtering Library
* Copyright (c) 2002 Michael Stevens
* See accompanying Bayes++.htm for terms and conditions of use.
*
* $Header: /cvsroot/bayesclasses/Bayes++/Test/ra
www.eeworm.com/read/473001/6853753
h random.h
/***************************************************************************
* blitz/random.h Random number generator wrapper class
*
* $Id: random.h,v 1.4 1998/03/14 00:04:47 tveldhui Exp
www.eeworm.com/read/472768/6865280
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/472558/6870162
m random.m
function [out] = random(msg,BSID,DIUC,Frame);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% %
www.eeworm.com/read/195469/8152297
c random.c
//*****************************************************************************
//
// random.c - Random number generator utilizing MD4 hash function of
// environmental noise captured vi
www.eeworm.com/read/195469/8152319
h random.h
//*****************************************************************************
//
// random.h - Protoytpes for the random number generator.
//
// Copyright (c) 2005,2006 Luminary Micro, Inc. All
www.eeworm.com/read/195195/8168879
c random.c
/*
*
* Rand.c
*
* - linear and additive congruential random number generators
* (see R. Sedgewick, Algorithms, Chapter 35)
*
* Implementation: R. Fuchs, EMBL Data Library, 1991
*
*/
#inc
www.eeworm.com/read/394870/8204767
h random.h
#ifndef RANDOM
#define RANDOM
//随机数产生类random
class random
{
public:
random();//空构造函数
random(unsigned short initialSeed);//带参构造
unsigned short randomInterger();//种子seed产生函数
double randomR