ABC_FDTD_Die(T) Implements simulation of a Gaussian Pulse over T time steps. ABC are for free space. If boundaries are in the Dielectric medium then the ABC fail. Dielectric medium begin and end can be specified with the code
標簽: ABC_FDTD_Die Implements simulation Gaussian
上傳時間: 2013-12-22
上傳用戶:caiiicc
ABC_FDTD_Die(T) Implements simulation of a Gaussian Pulse over T time steps. ABC are for free space. If boundaries are in the Dielectric medium then the ABC fail. Dielectric medium begin and end can be specified with the code
標簽: ABC_FDTD_Die Implements simulation Gaussian
上傳時間: 2014-07-27
上傳用戶:LIKE
先運行力控應用程序(如演示工程——反應釜),實時數據庫系統亦隨之啟動。 然后啟動delphi6.0,創建一個新的工程。 在form1窗體中,放置DdeClientConv控件(system標簽頁),設置ConnectMode屬性值為ddeAutomatic、DdeService屬性值為db、DdeTopic屬性值為db; 接下來放置DdeClientItem控件(system標簽頁),設置DdeConv為DdeClientConv1,設置DdeItem屬性值為所要讀取的數據庫點參數值如dbmixvol.pv; 放置一個edit控件; 放置一個timer控件,設置interval屬性值為100;在ontimer腳本中加入: procedure TForm1.Timer1Timer(Sender: TObject) begin edit1.text:=form1.DdeClientItem1.Text end
上傳時間: 2014-01-22
上傳用戶:lwwhust
how to add arrays * Use of const (constant) values. * Creation of vectors. * Passing vectors as function arguments. * Reading from files of unknown size (monitoring istream status). * Repetitive structures (while and for loops). * The increment operators (++). * Selection structures (if-else statements). * Use of the .size, .empty, .begin, .insert, .erase, .resize, .clear and .swap vector class member functions.
標簽: Creation constant Passing vectors
上傳時間: 2017-04-25
上傳用戶:1079836864
This is a assembly languages that teach how to write floppy disk subroutine. A great start for beginner who want to learn how ASM work. i got 100 for this assignment. have a look and comment
標簽: subroutine languages assembly floppy
上傳時間: 2017-06-01
上傳用戶:gououo
編譯課上做的小程序,用四種分析方法分別實現(LL1,算符優先,遞歸下降,簡單詞法分析) 完成對正則文法所描述的Pascal語言子集單詞符號的詞法分析程序。 <標識符>→字母︱ <標識符>字母︱ <標識符>數字 <無符號整數>→數字︱ <無符號整數>數字 <單字符分界符> →+ ︱- ︱* ︱ ︱(︱) <雙字符分界符>→<大于>=︱<小于>=︱<小于>>︱<冒號>=︱<斜豎>* <小于>→< <等于>→= <大于>→> <冒號> →: <斜豎> →/ 識別語言的保留字 :begin end if then else for do while and or not
上傳時間: 2014-06-29
上傳用戶:sjyy1001
C++ C 詞法分析器,編譯原理, 運行時輸入文件(input.txt)路徑,文件內容為{}begin FOR(I=0 I<10 I=I+1){} END
標簽: 分析器
上傳時間: 2013-12-18
上傳用戶:mikesering
Algorithm that find the peaks of a signal. You can choose the number of peaks you want to find and the valour of peak to begin to find.
上傳時間: 2013-12-24
上傳用戶:cc1915
-- Hamming Decoder -- This Hamming decoder accepts an 8-bit Hamming code (produced by the encoder above) and performs single error correction and double error detection. -- download from: www.pld.com.cn & www.fpga.com.cn LIBRARY ieee USE ieee.std_logic_1164.ALL ENTITY hamdec IS PORT(hamin : IN BIT_VECTOR(0 TO 7) --d0 d1 d2 d3 p0 p1 p2 p4 dataout : OUT BIT_VECTOR(0 TO 3) --d0 d1 d2 d3 sec, ded, ne : OUT BIT) --diagnostic outputs END hamdec ARCHITECTURE ver1 OF hamdec IS begin
標簽: Hamming produced Decoder decoder
上傳時間: 2017-07-15
上傳用戶:520
實驗目的:用c語言對一個簡單語言的子集編制一個一遍掃描的編譯程序,以加深對編譯原理的理解,掌握編譯程序的實現方法和技術。 c.1詞法分析 c.1.1實驗目的 設計、編制并調試一個詞法分析程序,加深對詞法分析原理的理解。 c.1.2實驗要求 c.1.2.1待分析的簡單語言的詞法 (1) 關鍵字: begin if then while do end --------有實驗報告+.cpp+分析
上傳時間: 2013-12-23
上傳用戶:z754970244