代码搜索:Random

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

代码结果 10,000
www.eeworm.com/read/138257/13244728

c random2.c

#include #include int rnd(void); void seedrnd(void); void main() { int x; seedrnd(); //prepare random number gen. //display 100 random numbers for(x=0;x
www.eeworm.com/read/138257/13244829

c random4.c

#include #include #include //for seeding randomizer int rnd(int range); void seedrnd(void); void main() { int x; seedrnd(); //display 100 random numbe
www.eeworm.com/read/138257/13244890

c random1.c

#include #include int rnd(void); void main() { int x; //display 100 random numbers for(x=0;x
www.eeworm.com/read/138257/13244965

c random3.c

#include #include #include //for seeding randomizer int rnd(void); void seedrnd(void); void main() { int x; seedrnd(); //display 100 random numbers
www.eeworm.com/read/324473/13261772

v random_tp.v

`timescale 10ns/1ns module random_tp; integer data; integer i; parameter delay=10; initial $monitor($time,,,"data=%b",data); initial begin for(i=0; i
www.eeworm.com/read/323912/13307501

v eth_random.v

////////////////////////////////////////////////////////////////////// //// //// //// eth_random.v
www.eeworm.com/read/323871/13312460

lua random distribution.lua

-- Random Distribution Script -- Robert Edwards 2003 -- This script is in the public domain and can be used for any purpose -- I just hope its useful as an example of binary IO in lua for mappy
www.eeworm.com/read/137539/13314003

v random_tp.v

`timescale 10ns/1ns module random_tp; integer data; integer i; parameter delay=10; initial $monitor($time,,,"data=%b",data); initial begin for(i=0; i
www.eeworm.com/read/321972/13391513

m random0.m

function ran = random0(n,m) %RANDOM0 Generate uniform random numbers in [0,1) % Function RANDOM0 generates an array of uniform % random numbers in the range [0,1). The usage % is: % % random0
www.eeworm.com/read/321288/13409570

m random_binary.m

% File: random_binary.m % Software given here is to accompany the textbook: W.H. Tranter, % K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of % Communication Systems Simulation with