王小平《遺傳算法——理論、應(yīng)用與軟件實(shí)現(xiàn)》隨書光盤,內(nèi)容有: \GA 本書中所附源程序C或C++代碼文件及其可執(zhí)行文件 Scs.cpp 基本分類算法源程序,輸入數(shù)據(jù)文件cfile.txt,efile.txt,gfile.txt,pfile.txt,rfile.txt,tfile.txt Sga.c 基本遺傳算法源程序, 輸入數(shù)據(jù)文件input,輸出文件output A_life.c 基于遺傳算法的人工生命模擬源程序, 輸入數(shù)據(jù)文件world GA_nn.c 基于遺傳算法優(yōu)化神經(jīng)網(wǎng)絡(luò)結(jié)構(gòu)源程序,輸入數(shù)據(jù)文件sample Patmat.c 基于遺傳算法提取基元圖形源程序 \Sources 遺傳算法相關(guān)自由軟件及代碼
標(biāo)簽: 算法 光盤 軟件實(shí)現(xiàn)
上傳時間: 2013-12-14
上傳用戶:sz_hjbf
Secure Programming Cookbook for C and C++ is an important new resource for developers serious about writing secure code for Unix(including Linux) and Windows environments. This essential code companion covers a wide range of topics, including safe initialization, access control, input validation, symmetric and public key cryptography, cryptographic hashes and MACs, authentication and key exchange, PKI, random numbers, and anti-tampering.
標(biāo)簽: Programming developers for important
上傳時間: 2015-09-03
上傳用戶:gundan
This project does not contain a full, runnable application program. Instead, the only package ope.account contains two classes which represent basic bank customer and account information.
標(biāo)簽: application runnable Instead project
上傳時間: 2013-12-25
上傳用戶:許小華
This project does not contain a full, runnable application program. Instead, the only package ope.football contains two classes to represent match data for football (and possibly other team sports).
標(biāo)簽: application runnable Instead project
上傳時間: 2015-09-03
上傳用戶:zhaiyanzhong
JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared. This is very useful for describing exactly what has changed between two releases of a product. Only the API (Application Programming Interface) of each version is compared. It does not compare what the source code does when executed.
標(biāo)簽: constructors generates packages Javadoc
上傳時間: 2015-09-06
上傳用戶:lijianyu172
* This a software code module for a time-of-day clock object. * The clock may be fixed 12-hour, fixed 24-hour, or dynamically * configurable between these two types. Clock data can be accessed * as a binary number representing the number of minutes since midnight * or a BCD number formatted according to the time-of-day description * in the TIME module 0404x. The functions work with time-of-day values * which conform to normally accepted clock values of 1:00 to * 12:59 BCD / 0 to 719 binary for a 12-hour clock or clock values * 00:00 to 23:59 BCD / 0 to 1439 binary for a 24-hour clock. On power-up * the clock is 12:00 BCD / 0 binary for a 12-hour or dynamically * configurable clock, or 00:00 BCD / 0 binary for a 24-hour clock.
標(biāo)簽: clock time-of-day software module
上傳時間: 2013-12-07
上傳用戶:llandlu
* CONSTRAINTS * This module does not handle data which is considered out of range by the * application(i.e. fixed constants which represent error condition) * * Maximum weight value must be limited to 128 to prevent an overflow * condition during the calculation. * * The internal data type must be large enough to handle the calculations. * The maximum possible internal value * = Max Input Value * (weight - 1) + Max Input Value * If a maximum weight of 128 is used, the internal data type should be 2 * times the size of the input data type.
標(biāo)簽: CONSTRAINTS considered module handle
上傳時間: 2015-09-07
上傳用戶:qunquan
* DEFINITION * This is the header file for a library module used to calculate the median * of a list of values. It finds the value that would be in the center if * the list were sorted. If the list contains an even number of values, the * lower of the two center values is reported. The values themselves are not * sorted or modified in any way. This algorithm can be used as a filtering * tool for rejecting noisy data.
標(biāo)簽: DEFINITION calculate the library
上傳時間: 2015-09-07
上傳用戶:refent
本程序分為界面和控制器核心兩部分 一、界面部分功能主要有: (1)顯示控制器核心數(shù)據(jù)和參數(shù) (2)與用戶交互,可以調(diào)節(jié)初始輸入溫度值,并將溫度變化率清零以便進(jìn)行新一輪的模擬。 界面使用了定時器。開啟模擬時候,每隔一秒,觸發(fā)一次計(jì)時器消息,完成下列工作: 1. 將界面上的當(dāng)前溫度映射為模糊控制器的輸入溫度 2. 輸出當(dāng)前溫度,當(dāng)前溫度變化率 3. 調(diào)用模糊控制,得到控制器輸出值,將其乘以m_fFuelEffect (燃料輸出對溫度變化率的影響率,目前設(shè)置為0.3),得到變化率的變化,加到當(dāng)前溫度變化率上,得到新的變化率。 4. 更新變化率,更新溫度。將結(jié)果映射到界面上。 5. 記錄相關(guān)數(shù)據(jù)并以圖形、數(shù)字方式輸出。 二、控制器核心用到的類有 (1)Rule_Func_Single 將簡單的函數(shù)包裝成類,方便后面使用。實(shí)現(xiàn)了 NB, NS, ZO, PS, PB 等梯形函數(shù),以及常值函數(shù)。 (2)Grading_Func 繼承自Rule_Func_Single類,比基類增加一個輸入?yún)?shù),指明梯形函數(shù)屬于Input, Delta或者Output 。 (3)Rule_Function 將兩個Grading_Func結(jié)合在一起,進(jìn)行模糊與或模糊或等模糊邏輯操作,并輸出結(jié)果。
上傳時間: 2014-11-01
上傳用戶:Yukiseop
CHMMBOX, version 1.2, Iead Rezek, Oxford University, Feb 2001 Matlab toolbox for max. aposteriori estimation of two chain Coupled Hidden Markov Models.
標(biāo)簽: aposteriori University CHMMBOX version
上傳時間: 2014-01-23
上傳用戶:rocwangdp
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1