代码搜索:Random

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

代码结果 10,000
www.eeworm.com/read/480713/6660122

m randtx.m

function U = randtx(arg1,arg2) % RANDTX Text book version of RAND % Uniformly distributed random numbers % This M-file exactly reproduces the numerical % behavior of the builtin RAND function. %
www.eeworm.com/read/480250/6668585

i defns.i

/*************************************************************************/ /* */ /* Definitions used in C4.5 */ /* ------------------------ */ /* */ /*********
www.eeworm.com/read/478398/6716174

cpp sga.cpp

////////////////////////////////// // // 实验三: 基本sga遗传算法 // 解安徽省17市TSP问题 // 姓名:饶玉佳 学号:E200602075 // // #include #include #include #include
www.eeworm.com/read/478118/6720292

java cointoss.java

//: operators/CoinToss.java // TIJ4 Chapter Operators, Exercise 7, page 106 // Write a program that simulates coin-flipping import java.util.*; import org.greggordon.tools.*; public class Co
www.eeworm.com/read/477716/6732784

c fig10_54.c

/* Bad random number generator */ #include /* START: fig10_54.txt */ static unsigned long Seed = 1; #define A 48271L #define M 2147483647L
www.eeworm.com/read/477461/6736213

cpp stdafx.cpp

// stdafx.cpp : 只包括标准包含文件的源文件 // random_shuffle.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
www.eeworm.com/read/477461/6736604

cpp stdafx.cpp

// stdafx.cpp : 只包括标准包含文件的源文件 // random_sample.pch 将作为预编译头 // stdafx.obj 将包含预编译类型信息 #include "stdafx.h" // TODO: 在 STDAFX.H 中 // 引用任何所需的附加头文件,而不是在此文件中引用
www.eeworm.com/read/477321/6741685

txt graphics.h do some effects.txt

/* random.c some graphics effects using random numbers. example 1.2 by HarshaPerla, http://eharsha.tk */ #include "graphics.h" #include "conio.h" #include "stdlib.h" void main() { i
www.eeworm.com/read/409735/11315048

html widows.html

www.eeworm.com/read/264378/11317241

v test_adder.v

`timescale 1ns/1ns module test_adder; reg [1:0]sel; reg clk; reg rst; reg [63:0] X,Y; wire [64:0]sum; wire [127:0]muilt_out; parameter delay=20; integer i; always# (delay/2) begin clk=~clk; end