二維FDTD程序,采用PML邊界s 用pml和mur分別計算j=1處的Hz(i,1).計算空間擴大到400*400,不加邊界,運行相同的時間步
上傳時間: 2013-12-22
上傳用戶:talenthn
palm編成,這種書很少,有興趣看看 Title: Palm Programming: The Developer s Guide URL: http://safari.oreilly.com/JVXSL.asp?x=1&mode=section&sortKey=rank&sortOrder=desc&view=book&xmlid=1-56592-525-4&open=false&srchText=palm+programming&code=&h=&m=&l=1&catid=&s=1&b=1&f=1&t=1&c=1&u=1&page=0 ISBN: 1-56592-525-4 Author: Julie McKeehan/ Neil Rhodes Publisher: O Reilly Page: 478 Edition: 1st edition (December 1998) Catalog: PDA programming / Palm Format: pdf Size: 2.06M Supplier: Summary: Emerging as the bestselling hand-held computers of all time, PalmPilots have spawned intense developer activity and a fanatical following. Used by Palm in their developer training, this tutorial-style book shows intermediate to experienced C programmers how to build a Palm application from the ground up. Includes a CD-ROM with source code and third-party developer tools
標簽: Programming Developer oreilly safari
上傳時間: 2013-12-10
上傳用戶:litianchu
考察例1 4 - 8中的1 4個點。A中的最近點對為(b,h),其距離約為0 . 3 1 6。B中最近點對為 (f, j),其距離為0 . 3,因此= 0 . 3。當考察 是否存在第三類點時,除d, g, i, l, m 以外 的點均被淘汰,因為它們距分割線x= 1的 距離≥ 。RA ={d, i, m},RB= {g, l},由 于d 和m 的比較區(qū)中沒有點,只需考察i 即可。i 的比較區(qū)中僅含點l。計算i 和l 的距離,發(fā)現(xiàn)它小于,因此(i, l) 是最近
標簽:
上傳時間: 2013-12-03
上傳用戶:66666
Java Regex Primer Since version 1.4, Java has had support for Regular Expressions in the core API. Java Regex follows the same basic principles used in other languages, just withdi erent access methods, and some subtledi erences with the patterns. This primer is aimed towards developers already familiar with regex in other languages wanting a brief outline of its support in Java. It may also be beneficial to developers learning regex if used in conjunction with detailed documentation explaining the construction of regex patterns. Reading the javadoc forjava.util.regex. Pattern is a must to see how the Java regex patterns aredi erent from other languages such as Perl. Most of the functions discussed herin are from thejava.util.regex. Matcher class with a few fromjava.util.regex. Pattern. Reading this text in conjunction with the javadoc of those classes is advised.
標簽: Java Expressions Regular version
上傳時間: 2013-12-18
上傳用戶:lanhuaying
本程序演示for-for的二重循環(huán)結構。外層for語句的循環(huán)變量是i,控制總共顯示多少行 內(nèi)層for語句 的循環(huán)變量是j,控制每行顯示多少字符。
標簽: for-for for 程序 循環(huán)結構
上傳時間: 2013-12-23
上傳用戶:gundan
本教程舉例說明了如何使用 ADO 編程模型對數(shù)據(jù)源進行查詢及更新。教程首先講述了完成此項任務的必要步驟,然后分別通過 Microsoft® Visual Basic、以 VC++ Extensions 為特征的 Microsoft® Visual C++、Microsoft® Visual Basic® 、Scripting Edition 和以 ADO for Windows Foundation Classes (ADO/WFC) 為特征的 Microsoft® Visual J++® 進行更為具體的說明。
上傳時間: 2015-10-13
上傳用戶:330402686
經(jīng)典C語言程序設計100例1-10 如【程序1】 題目:有1、2、3、4個數(shù)字,能組成多少個互不相同且無重復數(shù)字的三位數(shù)?都是多少? 1.程序分析:可填在百位、十位、個位的數(shù)字都是1、2、3、4。組成所有的排列后再去 掉不滿足條件的排列。 2.程序源代碼: main() { int i,j,k printf("\n") for(i=1 i<5 i++) /*以下為三重循環(huán)*/ for(j=1 j<5 j++) for (k=1 k<5 k++) { if (i!=k&&i!=j&&j!=k) /*確保i、j、k三位互不相同*/ printf("%d,%d,%d\n",i,j,k) } }
上傳時間: 2013-12-14
上傳用戶:hfmm633
We propose a simple and effective method for detecting view- and scale-independent ridge-valley lines defined via first- and secondorder curvature derivatives on shapes approximated by dense triangle meshes.
標簽: scale-independent ridge-valley and effective
上傳時間: 2014-01-08
上傳用戶:sammi
代入法的啟發(fā)示搜索 我的代碼實現(xiàn)是:按照自然語言各字母出現(xiàn)頻率的大小從高到低(已經(jīng)有人作國統(tǒng)計分析了)先生成一張字母出現(xiàn)頻率統(tǒng)計表(A)--------(e),(t,a,o,i,n,s,h,r),(d,l),(c,u,m,w,f,g,y,p,b),(v,k,j,x,q,z) ,再對密文字母計算頻率,并按頻率從高到低生成一張輸入密文字母的統(tǒng)計表(B),通過兩張表的對應關系,不斷用A中的字母去替換B中的字母,搜索不成功時就回退,在這里回朔是一個關鍵。
上傳時間: 2015-10-24
上傳用戶:wanqunsheng
使用說明:請您先正確設置數(shù)據(jù)庫及JDBC驅(qū)動。 參考: http://blog.raofeng.com/love/kiss/archives/2006/16.html http://blog.raofeng.com/love/kiss/archives/2006/13.html http://dev.mysql.com/downloads/connector/j/3.1.html下載JDBC驅(qū)動 先新建一數(shù)據(jù)庫(默認名為jspmo)建立數(shù)據(jù)庫及表格的命令都在sql.txt內(nèi),可以直接復制到數(shù)據(jù)庫里運行。 默認管理員名為: admin ,密碼為:jspmo.com 請修改config.jsp中的name(管理員名),password(管理員密碼),sitename(留言本標題),copyright(版權信息). 以及conn.jsp中的host(數(shù)據(jù)庫服務器主機),user(數(shù)據(jù)庫用戶名),pw(數(shù)據(jù)庫密碼),db(數(shù)據(jù)庫名),tab(數(shù)據(jù)庫表名)。
標簽: http blog archives raofeng
上傳時間: 2015-10-25
上傳用戶:894898248