CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - MOD
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - MOD - List
[
Multimedia program
]
Mod xm
DL : 0
其中调用控件来播放MOD XM 等文件,还有8,8,1的PCM文件,不含什么技术性内容,可以用于练习使用DLL文件.-which controls called XM to broadcast MOD documents, 8,8,1 PCM, what is non-technical content, which can be used to practice the use of DLL files.
Update
: 2008-10-13
Size
: 1.19mb
Publisher
:
耿海瑞
[
Other
]
Uniform Generator
DL : 0
Uniform Generator Computer simulations often require random numbers. One way to generate pseudo-random numbers is via a function of the form where `` " is the modulus operator. Such a function will generate pseudo-random numbers (seed) between 0 and MOD-1. One problem with functions of this form is that they will always generate the same pattern over and over. In order to minimize this effect, selecting the STEP and MOD values carefully can result in a uniform distribution of all values between (and including) 0 and MOD-1. For example, if STEP = 3 and MOD = 5, the function will generate the series of pseudo-random numbers 0, 3, 1, 4, 2 in a repeating cycle. In this example, all of the numbers between and including 0 and MOD-1 will be generated every MOD iterations of the function. Note that by the nature of the function to generate the same seed(x+1) every time seed(x) occurs means that if a function will generate all the numbers between 0 and MOD-1, it will generate pseudo-random numbers uniformly with every MOD iterations. If STEP = 15 and MOD = 20, the function generates the series 0, 15, 10, 5 (or any other repeating series if the initial seed is other than 0). This is a poor selection of STEP and MOD because no initial seed will generate all of the numbers from 0 and MOD-1. Your program will determine if choices of STEP and MOD will generate a uniform distribution of pseudo-random numbers. Input Each line of input will contain a pair of integers for STEP and MOD in that order ( ). Output For each line of input, your program should print the STEP value right- justified in columns 1 through 10, the MOD value right-justified in columns 11 through 20 and either ``Good Choice" or ``Bad Choice" left-justified starting in column 25. The ``Good Choice" message should be printed when the selection of STEP and MOD will generate all the numbers between and including 0 and MOD-1 when MOD numbers are generated. Otherwise, your program should print the message ``Bad Choice". After each output test set, your program should print exactly one blank line. Sample Input 3 5 15 20 63923 99999 Sample Output 3 5 Good Choice 15 20 Bad Choice 63923 99999 Good Choice
Update
: 2009-04-30
Size
: 360byte
Publisher
:
samurai1x4kyo@126.com
[
Other resource
]
minecraft mod
DL : 0
minecraft mod 使用後加上cjb就可以像gm1樣無所不能
Update
: 2011-12-12
Size
: 81.24kb
Publisher
:
jim9851
[
Multimedia Develop
]
zinf-2.2.1
DL : 0
MutilMedia Player支援MOD MP3 WAVE OGG等格式-MutilMedia Player support MOD MP3 WAVE OGG format, etc.
Update
: 2025-02-17
Size
: 2.23mb
Publisher
:
林正旺
[
Windows Develop
]
算术表达式解析器
DL : 0
此算术表达式能够在程序运行时根据输入的变量大小和算术表达式动态解析表达式,得到运算结果。支持多项算术运算符和数学函数如下:: + - * / ^ ( ) mod abs, atan, cos, exp, ln, round, sin, sqrt, sqr, trunc 例如设定a1和a2的大小,就可计算下列表达式: exp(sin(a1)*cos(a2))操作系统: Visual C++语言 -this arithmetic expression in accordance with the procedures in the importation of variable size and arithmetic expressions dynamic analytical expression to be Operational results. Support for a number of arithmetic operations and mathematical functions are as follows : :-*/^ () mod abs, atan, cos, exp, ln, round, sin, sqrt, sqr, for example, to set trunc a1 and a2 the size, can be calculated by the following formula : exp ( sin (a1)* cos (a2)) Operating System : Visual C language
Update
: 2025-02-17
Size
: 48kb
Publisher
:
曲贵增
[
Crack Hack
]
RSA解密和加密算法的实现和应用
DL : 0
RSA算法 :首先, 找出三个数, p, q, r, 其中 p, q 是两个相异的质数, r 是与 (p-1)(q-1) 互质的数...... p, q, r 这三个数便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 这个 m 一定存在, 因为 r 与 (p-1)(q-1) 互质, 用辗转相除法就可以得到了..... 再来, 计算 n = pq....... m, n 这两个数便是 public_key ,编码过程是, 若资料为 a, 将其看成是一个大整数, 假设 a < n.... 如果 a >= n 的话, 就将 a 表成 s 进位 (s <= n, 通常取 s = 2^t), 则每一位数均小于 n, 然後分段编码...... 接下来, 计算 b == a^m mod n, (0 <= b < n), b 就是编码后的资料。解码的过程是, 计算 c == b^r mod pq (0 <= c < pq), 于是, 解码完毕-RSA algorithm : First, find a few 3, p, q, r, p, q is the two different prime number, with the r (p-1) (q-1) coprime several ... p, q, r it person_key number is three, and then find m, making r ^ m == a mod (p-1) (q-1 m ...................................... this must exist, because r (p-1) (q- 1) coprime, with the division algorithm can be a ..... Next, calculate n = pq ....... m, n is the number two public_key, coding process is that if a data and to treat it as a big Integer assuming a <n. ... If a> = n, a table will be rounding into s (s <= n, usually from 2 ^ s = t), each n is less than the median, and then sub-coding ..... . Next, calculate a == b ^ m mod n, (0 <= b <n), b is encoded information. Decoding is the process of calculating c == b ^ r mod pq (0 <= c &
Update
: 2025-02-17
Size
: 1kb
Publisher
:
胡康康
[
Multimedia Develop
]
Mod xm
DL : 0
其中调用控件来播放MOD XM 等文件,还有8,8,1的PCM文件,不含什么技术性内容,可以用于练习使用DLL文件.-which controls called XM to broadcast MOD documents, 8,8,1 PCM, what is non-technical content, which can be used to practice the use of DLL files.
Update
: 2025-02-17
Size
: 1.19mb
Publisher
:
耿海瑞
[
Other
]
cdma_coding
DL : 0
cdma coding mod and demod
Update
: 2025-02-17
Size
: 1kb
Publisher
:
benny
[
Communication-Mobile
]
FSK_Mod_Demod
DL : 1
FSK调制Matlab程序。包括FSK mod and demod;CPFSK mod and demod代码。-Matlab procedures FSK modulation. Including FSK mod and demod CPFSK mod and demod code.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
吴 昊
[
Post-TeleCom sofeware systems
]
MSK_Mod_Demod
DL : 1
MSK的调制解调程序,包括传统MSK mod and demod,以及GMSK的mod and demod.-MSK modem procedures, including the traditional MSK mod and demod, and GMSK the mod and demod.
Update
: 2025-02-17
Size
: 2kb
Publisher
:
吴 昊
[
matlab
]
mod-demod
DL : 0
BPSK.QPSK.16QAM.64QAM调制解调-BPSK.QPSK.16QAM.64QAM modem
Update
: 2025-02-17
Size
: 4kb
Publisher
:
周郭楠
[
Communication-Mobile
]
mod..demod
DL : 0
BPSK, QPSK, !6QAM, 64QAM的matlab调制与解调算法与编程, -BPSK, QPSK,! 6QAM, 64QAM modulation and demodulation of matlab algorithms and programming,
Update
: 2025-02-17
Size
: 4kb
Publisher
:
张鑫
[
matlab
]
Mod
DL : 0
有关于相位,频率,等数字调制技术识别的MATLAB代码,-Have on the phase, frequency, and other digital modulation techniques to identify the MATLAB code,
Update
: 2025-02-17
Size
: 10kb
Publisher
:
shirley
[
Other
]
momi
DL : 0
大数的模幂算法(GUI),用密码学课本中的算法,快速、高效。计算(x的r次方) mod p 的值-Large numbers of modular exponentiation algorithm (GUI), used cryptography algorithm textbooks, fast and efficient. Calculation of (x of the r-th power) mod p value
Update
: 2025-02-17
Size
: 22kb
Publisher
:
LYC
[
Multimedia Develop
]
bass24
DL : 0
BASS 音频库最新2.4版。内含basscd24、bassenc24、bassflac24、bassmidi24、bassmix24、basswm24、basswv24等多个插件。是进行音频处理的理想函数库。 BASS is an audio library for use in Windows and Mac OSX software. Its purpose is to provide developers with the most powerful and efficient (yet easy to use), sample, stream (MP3, MP2, MP1, OGG, WAV, AIFF, custom generated, and more via add-ons), MOD music (XM, IT, S3M, MOD, MTM, UMX), MO3 music (MP3/OGG compressed MODs), and recording functions. All in a tiny DLL, under 100KB* in size.-BASS audio library latest 2.4 version. Intron basscd24, bassenc24, bassflac24, bassmidi24, bassmix24, basswm24, basswv24 and many other plug-ins. Is ideal for audio processing libraries. BASS is an audio library for use in Windows and Mac OSX software. Its purpose is to provide developers with the most powerful and efficient (yet easy to use), sample, stream (MP3, MP2, MP1, OGG, WAV, AIFF, custom generated, and more via add-ons), MOD music (XM, IT, S3M, MOD, MTM, UMX), MO3 music (MP3/OGG compressed MODs), and recording functions. All in a tiny DLL, under 100KB* in size.
Update
: 2025-02-17
Size
: 1.16mb
Publisher
:
Ferret
[
Windows Develop
]
mod-mac
DL : 0
实现修改网卡地址,简单过程明细。直接修改,快速上网。-Modified to achieve LAN address, details of a simple process. Directly modify, fast Internet access.
Update
: 2025-02-17
Size
: 381kb
Publisher
:
wlk
[
Other
]
MOD冲突检测器
DL : 0
mod冲突检查,加快游戏速度,十分简洁明了(Mod collision checker)
Update
: 2025-02-17
Size
: 686kb
Publisher
:
李佳伟
[
Other
]
64142404KSVD-MOD
DL : 0
KSVD字典学习算法和MOD字典学习算法,希望对初学者有用(KSVD dictionary learning algorithm and Mod dictionary learning algorithm,hoping to be useful for beginners)
Update
: 2025-02-17
Size
: 732kb
Publisher
:
daoguangdong
[
File Format
]
MOD Specification
DL : 0
File format Specification of a Amiga MOD Module
Update
: 2020-01-07
Size
: 13.7kb
Publisher
:
latocej136
[
Games
]
Gta V Mod menu
DL : 0
Mod menu for gta 5 Mod menu for gta 5 Mod menu for gta 5 Mod menu for gta 5
Update
: 2020-02-22
Size
: 1.98mb
Publisher
:
Anonymous2323
«
1
2
3
4
5
6
7
8
9
10
...
48
»
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.