代码搜索:Random
找到约 10,000 项符合「Random」的源代码
代码结果 10,000
www.eeworm.com/read/147764/12521344
dsp random.dsp
.module/boot=3/boot=4 random;
{ RANDOM.DSP - Random number function.
INPUT :
sr1 = msw of seed
sr0 = lsw of seed
OUTPUT: for best result use ONLY sr1 as random num
www.eeworm.com/read/248730/12544042
h random.h
// file : random.h
// version: 1.03 [August 21, 1995]
#ifndef _random_h_
#define _random_h_
/* Mods by Art Stephens so compiles on Sun using CC, does anyone know */
/* the correct header files to
www.eeworm.com/read/248697/12545684
c random.c
#include
#include
#include
typedef struct {
uint16_t shiftReg;
uint16_t initSeed;
uint16_t mask;
} RandomState;
static RandomState randomst;
void random_
www.eeworm.com/read/248697/12545758
h random.h
/**
* @brief header file for random
* @author Simon Han
*/
#ifndef _RANDOM_H
#define _RANDOM_H
#ifndef _MODULE_
#include
/**
* init function
*/
extern void random_init(void
www.eeworm.com/read/147408/12554218
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/334567/12585969
m random.m
% MATLAB SIMULATION OF FS-1015 LPC-10e
% COPYRIGHT (C) 1996-99 ANDREAS SPANIAS and TED PAINTER
%
% This Copyright applies only to this particular MATLAB implementation
% of the LPC-10e coder. The
www.eeworm.com/read/146694/12618268
cpp random.cpp
//random.cpp
#include
#include
#include
#include //time_t
void main(void)
{
int i;
cout
www.eeworm.com/read/146694/12618868