代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/366616/9806459
c random.c
/*
** 2001 September 15
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiven
www.eeworm.com/read/366616/9807061
o random.o
www.eeworm.com/read/366524/9810784
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/170245/9813541
asm random.asm
.data?
dwRandom dd ?
.code
;********************************************************************
; 随机数发生器
; 输入:al = 随机数 bit 数
; 返回:eax = 随机数
;**********************************************
www.eeworm.com/read/170101/9820225
cxx random.cxx
// random.cpp A collection of Random number generators
// (c) Copyright 1995, Everett F. Carter Jr.
// Permission is granted by the author to use
// this
www.eeworm.com/read/170101/9820247
hpp random.hpp
// random.hpp A collection of random number generator objects
// (c) Copyright 1995, Everett F. Carter Jr.
// Permission is granted by the author to use
//
www.eeworm.com/read/365849/9843590
m random.m
function x = random(OBJ, t, varargin)
% RANDOM Generate IID samples from Gaussian distribution
% R=RANDOM(W, T, M, N, ...) or R=RANDOM(W, T, [M, N, ...]) returns a
% MxNx... matrix with IID sample
www.eeworm.com/read/365437/9863285
asm random.asm
www.eeworm.com/read/365220/9872861
class random.class
www.eeworm.com/read/364978/9885148
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)
{