亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Two-input

  • 王小平《遺傳算法——理論、應用與軟件實現》隨書光盤

    王小平《遺傳算法——理論、應用與軟件實現》隨書光盤,內容有: \GA 本書中所附源程序C或C++代碼文件及其可執行文件 Scs.cpp 基本分類算法源程序,輸入數據文件cfile.txt,efile.txt,gfile.txt,pfile.txt,rfile.txt,tfile.txt Sga.c 基本遺傳算法源程序, 輸入數據文件input,輸出文件output A_life.c 基于遺傳算法的人工生命模擬源程序, 輸入數據文件world GA_nn.c 基于遺傳算法優化神經網絡結構源程序,輸入數據文件sample Patmat.c 基于遺傳算法提取基元圖形源程序 \Sources 遺傳算法相關自由軟件及代碼

    標簽: 算法 光盤 軟件實現

    上傳時間: 2013-12-14

    上傳用戶:sz_hjbf

  • Secure Programming Cookbook for C and C++ is an important new resource for developers serious about

    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.

    標簽: Programming developers for important

    上傳時間: 2015-09-03

    上傳用戶:gundan

  • This project does not contain a full, runnable application program. Instead, the only package ope.ac

    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.

    標簽: application runnable Instead project

    上傳時間: 2013-12-25

    上傳用戶:許小華

  • This project does not contain a full, runnable application program. Instead, the only package ope.fo

    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).

    標簽: application runnable Instead project

    上傳時間: 2015-09-03

    上傳用戶:zhaiyanzhong

  • JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors,

    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.

    標簽: 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, fi

    * 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.

    標簽: 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 * appli

    * 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.

    標簽: 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

    * 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.

    標簽: DEFINITION calculate the library

    上傳時間: 2015-09-07

    上傳用戶:refent

  • 本程序分為界面和控制器核心兩部分 一、界面部分功能主要有: (1)顯示控制器核心數據和參數 (2)與用戶交互

    本程序分為界面和控制器核心兩部分 一、界面部分功能主要有: (1)顯示控制器核心數據和參數 (2)與用戶交互,可以調節初始輸入溫度值,并將溫度變化率清零以便進行新一輪的模擬。 界面使用了定時器。開啟模擬時候,每隔一秒,觸發一次計時器消息,完成下列工作: 1. 將界面上的當前溫度映射為模糊控制器的輸入溫度 2. 輸出當前溫度,當前溫度變化率 3. 調用模糊控制,得到控制器輸出值,將其乘以m_fFuelEffect (燃料輸出對溫度變化率的影響率,目前設置為0.3),得到變化率的變化,加到當前溫度變化率上,得到新的變化率。 4. 更新變化率,更新溫度。將結果映射到界面上。 5. 記錄相關數據并以圖形、數字方式輸出。 二、控制器核心用到的類有 (1)Rule_Func_Single 將簡單的函數包裝成類,方便后面使用。實現了 NB, NS, ZO, PS, PB 等梯形函數,以及常值函數。 (2)Grading_Func 繼承自Rule_Func_Single類,比基類增加一個輸入參數,指明梯形函數屬于Input, Delta或者Output 。 (3)Rule_Function 將兩個Grading_Func結合在一起,進行模糊與或模糊或等模糊邏輯操作,并輸出結果。

    標簽: 核心 程序 控制器

    上傳時間: 2014-11-01

    上傳用戶:Yukiseop

  • CHMMBOX, version 1.2, Iead Rezek, Oxford University, Feb 2001 Matlab toolbox for max. aposteriori e

    CHMMBOX, version 1.2, Iead Rezek, Oxford University, Feb 2001 Matlab toolbox for max. aposteriori estimation of two chain Coupled Hidden Markov Models.

    標簽: aposteriori University CHMMBOX version

    上傳時間: 2014-01-23

    上傳用戶:rocwangdp

主站蜘蛛池模板: 鸡泽县| 平山县| 彰化市| 长海县| 池州市| 龙南县| 南通市| 贵定县| 梁河县| 千阳县| 唐海县| 青海省| 鹤庆县| 关岭| 张掖市| 博爱县| 潮安县| 介休市| 达尔| 阿克陶县| 临桂县| 巫山县| 长兴县| 遵义县| 油尖旺区| 万宁市| 临猗县| 宜君县| 内丘县| 黔江区| 巴林左旗| 大连市| 绵阳市| 阿巴嘎旗| 萨迦县| 虞城县| 曲松县| 河曲县| 鞍山市| 灌云县| 南雄市|