The CD ROM driver is used with Classpnp.sys to provide access to CD ROMs and DVD ROMs. It supports Plug and Play, Power Management, and AutoRun (media change notification). It is 64-bit compliant.
標簽: ROMs Classpnp supports provide
上傳時間: 2014-01-12
上傳用戶:stella2015
推箱子游戲,規則很簡單,只需把所有的 b 都推到 p 上面去(會變成綠色)就過關了。但是玩起來難度可是相當大的,不要輕視喔。
標簽:
上傳時間: 2013-12-26
上傳用戶:yan2267246
基于MATLAB實現的說話人識別程序,分別用bp、pnn、som、rbf、lvq等算法,對語音文件進行訓練和測試,效果不錯。~..~ 下面說明一下bprengong程序: 數據分別用來訓練和測試兩部分。 具體程序分為兩部分,第一部分為:計算識別模型 變量v是mfcc處理以后的矢量。因為數據可能長短不一,所以放在同一進行截取。p的每一行代表一個語音數據(共15個)。變量Pr為每一行的最大最小值。變量T為目標值。輸出神經元個數為15。 在訓練階段,如果用于訓練的輸入訓練樣本的類別標號為i(即語音數據的標號),則訓練時設第i個節點的期望輸出設為1。其余節點期望輸出均為0。 在識別時,當一個未知類別的樣本作用到輸入端時,考查各輸出節點的輸出,并將這個樣本的類別判定為輸出值最大的那個節點對應的類別。
上傳時間: 2016-05-23
上傳用戶:釣鰲牧馬
This document including C language project file organization, C language trap and flaw, C language programming precious book three parts.
標簽: language organization including document
上傳時間: 2016-05-28
上傳用戶:tfyt
基于J2EE的物流信息系統的設計與實現 介紹了J2EE 體系結構、Mv c模式等相關概念和技術,并重點探討了 目 前比 較受歡迎的三種開源框架( s t r ut s框架、S Pr i n g框架和H i b e m a t e 框架)。 分析了他們的體系結構、 特點和優缺點。 根據J ZE E的分層結構,結合We b應用 的特點, 將三種框架進行組合設計, 即表現層用S t r ut s框架、 業務邏輯層用S P ri n g 框架、持久層用比b ema t e 框架,從而來構建物流信息系統。這種整合框架使各 層相對獨立, 減少各層之間的禍合程度,同時加快了系統的開發過程,增強了系 統的可維護性和可擴展性,初步達到了分布式物流信息系統的設計目標。 經過以上分析,結合物流系統的業務需求,進行了相關的實現。最后,系統 運用先進的A ja x技術來增強Ui層與服務器的異步通信能力, 使用戶體驗到動態 且響應靈 敏的桌 面級w e b應用程序。 通過江聯公司的試運行結果,系統達到了 渝瞇。 并 且 對 江 聯 公 司 提 出 了 基 于 R F I D 的 解 決 方 案 的 實 施 計 劃 。
上傳時間: 2016-06-01
上傳用戶:ynsnjs
基于J2EE技術的網上商城系統構建 本課題以國家8 6 3引導項目 , 暨新疆自治區高新計劃項目 — 廣匯美居物流園網上 商城系統為背景。旨 在利用先進的系統建模思想以及當前流行的We b編程技術,將迭 代式、以用戶需求為驅動和以構架為中心的R U P統一開發過程的系統建模思想應用到 電子商務系統模型的需求分析和設計的各個階段, 完整地實現整個系統的建模過程。 在 此基礎上對系統實現的關鍵技術問題:數據庫的并發訪問,MV C模式的應用以及統計 信息的圖表顯示等關鍵技術進行了具體的分析和實現。 本文利用I nt e 川 e 吸 的強大功能,借鑒國內外電子商務方面的相關經驗,分析虛擬店 鋪,網上商城及網上拍賣的功能結構和實現方式, 為廣匯美居物流園的商戶搭建網上虛 擬店鋪,網上商城及網上商品竟拍系統平臺。該系統經過近半年的使用,實際應用效果 較好。采用的R U P開發方法和M V c的設計模式使系統的靈活性和可擴展性大大增強。
上傳時間: 2014-12-03
上傳用戶:edisonfather
JLAB is a set of Matlab functions I have written or co-written over the past fifteen years for the purpose of analyzing data. It consists of four hundred m-files spanning thirty thousand lines of code. JLAB includes functions ranging in complexity from one-line aliases to high-level algorithms for certain specialized tasks. These have been collected together and made publicly available for you to use, modify, and --- subject to certain very reasonable constraints --- to redistribute. Some of the highlights are: a suite of functions for the rapid manipulation of multi-component, potentially multi-dimensional datasets a systematic way of dealing with datasets having components of non-uniform length tools for fine-tuning figures using compact, straightforward statements and specialized functions for spectral and time / frequency analysis, including advanced wavelet algorithms developed by myself and collaborators.
標簽: co-written functions the fifteen
上傳時間: 2014-01-26
上傳用戶:hjshhyy
C++實現的哈弗曼編碼,并有流程圖(1)I:初始化(Initialization)。從指定的英文文件中Sourcefile.txt讀取數據,根據文件內容統計的字符的頻度,建立哈夫曼樹。 (2)E:編碼(Encoding)。利用已經建好的哈夫曼樹進行編碼,并將每個字符的編碼寫入文件HuffCode.txt中保存。 (3)C:壓縮(Compress)。根據HuffCode.txt中編碼對文件Sourcefile.txt進行重新編碼,并將重新編碼后的內容寫入文件CodeFile.txt中。 (4)D:譯碼(Decoding)。利用已經建好的哈夫曼樹將文件CodeFile.txt中的代碼進行譯碼,結果存入文件TextFile中。 (5)P:打印代碼文件(Print)。將文件CodeFile.txt的內容顯示在終端上,每行50個代碼。 (6)T:顯示哈夫曼樹(Treeprinting)。將已經在內存中的哈夫曼樹以直觀的方式(樹或凹入表形式)顯示在終端上。
標簽: 編碼
上傳時間: 2013-12-24
上傳用戶:gxrui1991
% DYNMODES calculates ocean dynamic vertical modes % taking a column vector of Brunt-Vaisala values (Nsq) at % different pressures (p) and calculating some number of % dynamic modes (nmodes). % Note: The input pressures need not be uniformly spaced, % and the deepest pressure is assumed to be the bottom.
標簽: Brunt-Vaisala calculates DYNMODES vertical
上傳時間: 2013-12-06
上傳用戶:busterman
Abstract-The effect of the companding process on QAM signals has been under investigation for the past several years. The compander, included in the PCM telephone network to improve voice performance, has an unusual affect on digital QAM data signals which are transmitted over the same channel. The quantization noise, generated by the companding process which is multiplicative (and asymmetric), degrades the detectability performance of the outermost points of the QAM constellation more than that of the inner points. The combined effect of the companding noise and the inherent white gaussian noise of the system, leads us to a re-examination of signal constellation design. In this paper we investigate the detectability performance of a number of candidates for signal constellations including, a typical rectangular QAM constellation, the same constellation with the addition of a smear-desmear operation, and two new improved QAM constellation designs with two-dimensional warpi
標簽: investigation Abstract-The companding the
上傳時間: 2013-12-20
上傳用戶:英雄