ead file "YD.DOC". Who is the intended user Beginners in assembly and programmers. Features of the program: Yilmaz Disassembler:is an interactive disassembler which lets the user be a part of the disassembling process,is flexible, the user can disassemble in different formats,has user friendly interface, mouse support, pop-up menu commands, short cut key commands, context-sensitive on-line help,and it is cheap. Program s capacity and limitations: Max executable file size is 64 KB. Can not disassemble program of EXE-format.Only 8086/8088 CPU instructions can be disassembled. Disassemble 8087 Math Co-processor s instructions.
標簽: programmers Beginners Features assembly
上傳時間: 2014-06-21
上傳用戶:皇族傳媒
In this demo, I use the EM algorithm with a Rauch-Tung-Striebel smoother and an M step, which I ve recently derived, to train a two-layer perceptron, so as to classify medical data (kindly provided by Steve Roberts and Will Penny from EE, Imperial College). The data and simulations are described in: Nando de Freitas, Mahesan Niranjan and Andrew Gee Nonlinear State Space Estimation with Neural Networks and the EM algorithm After downloading the file, type "tar -xf EMdemo.tar" to uncompress it. This creates the directory EMdemo containing the required m files. Go to this directory, load matlab5 and type "EMtremor". The figures will then show you the simulation results, including ROC curves, likelihood plots, decision boundaries with error bars, etc. WARNING: Do make sure that you monitor the log-likelihood and check that it is increasing. Due to numerical errors, it might show glitches for some data sets.
標簽: Rauch-Tung-Striebel algorithm smoother which
上傳時間: 2016-04-15
上傳用戶:zhenyushaw
本書系統地介紹了一種硬件描述語言,即VHDL語言設計數字邏輯電路和數字系統的新方法。這是電子電路設計方法上一次革命性的變化,也是邁向21世紀的電子工程師所必須掌握的專門知識。本書共分12章,第l章---第8章主要介紹VHDL語言的基本知識和使用VHDL語言設計簡單邏輯電路的基本方法;第9章和第10章分別以定時器和接口電路設計為例,詳述了用VHDL語言設計復雜電路的步驟和過程;第11章簡單介紹了VHDL語言93版和87版的主要區別;第12章介紹了MAX+plus II的使用說明。 本書以數字邏輯電路設計為主線,用對比手法來說明數字邏輯電路的電原理圖和VHDL語言程序之間的對應關系,并列舉了眾多的實例。另外,還對設計中的有關技術,如仿真、綜合等作了相應說明。本書簡明扼要,易讀易懂。它可作為大學本科和研究生的教科書,也可以作為一般從事電子電路設計工程師的自學參考書。
標簽: 硬件描述語言
上傳時間: 2014-01-11
上傳用戶:sz_hjbf
是EDA設計的數字鐘的VHDL語言程序,可用Max+Plus2進行編譯,仿真并下載到芯片中。
上傳時間: 2016-04-30
上傳用戶:manlian
該程序為matlab環境下程序,主要演示“科學與藝術奇才”皮克歐沃的國王映射(King map),可以生成許多類似三維的復雜曲面,調整參數,或者加上高階攝動項,會得到更多的花樣一個
上傳時間: 2014-01-06
上傳用戶:fhzm5658
This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).
標簽: LDPC introduction simulation software
上傳時間: 2014-01-14
上傳用戶:大融融rr
本程序是一個行計算器(即對表達式求值)。計算器能實現加、減、乘、除、取余(%)和乘方(^)運算;能實現三角函數(正弦函數sin和余弦函數cos),求10為底的對數log,求2為底的對數ln,求e的指數冪exp,其參數也可以是合法的表達式; 計算器并能對表達式的合法性進行測試,錯誤的能給出表達式錯誤的信息。 ] 輸入文件格式:第一行是一個正整數N,表示有多少行表達式。接下來的N行每一行是 一個表達式。表達式使用由浮點數(只用小數點表示)和運算符表示。 輸出格式:每個行輸出一個表達式的結果(浮點輸出結果使用小數點表示法表示,)
上傳時間: 2016-05-27
上傳用戶:aeiouetla
包含附件中的頭文件,就可以在出log時,將log寫到文件中,方便調試。
上傳時間: 2013-12-22
上傳用戶:lmeeworm
% EM algorithm for k multidimensional Gaussian mixture estimation % % Inputs: % X(n,d) - input data, n=number of observations, d=dimension of variable % k - maximum number of Gaussian components allowed % ltol - percentage of the log likelihood difference between 2 iterations ([] for none) % maxiter - maximum number of iteration allowed ([] for none) % pflag - 1 for plotting GM for 1D or 2D cases only, 0 otherwise ([] for none) % Init - structure of initial W, M, V: Init.W, Init.M, Init.V ([] for none) % % Ouputs: % W(1,k) - estimated weights of GM % M(d,k) - estimated mean vectors of GM % V(d,d,k) - estimated covariance matrices of GM % L - log likelihood of estimates %
標簽: multidimensional estimation algorithm Gaussian
上傳時間: 2013-12-03
上傳用戶:我們的船長
This LDPC software is intended as an introduction to LDPC codes computer based simulation. The pseudo-random irregular low density parity check matrix is based on Radford M. Neal’s programs collection, which can be found in [1]. While Neal’s collection is well documented, in my opinion, C source codes are still overwhelming, especially if you are not knowledgeable in C language. My software is written for MATLAB, which is more readable than C. You may also want to refer to another MATLAB based LDPC source codes in [2], which has different flavor of code-writing style (in fact Arun has error in his log-likelihood decoder).
標簽: LDPC introduction simulation software
上傳時間: 2014-12-05
上傳用戶:change0329