基于B樣條小波邊緣檢測(cè)算子的應(yīng)用研究,摘自圖形圖像學(xué)報(bào)
標(biāo)簽: 邊緣檢測(cè) 應(yīng)用研究
上傳時(shí)間: 2014-11-28
上傳用戶:來茴
四種加密解密算法的源代碼/*輾轉(zhuǎn)相除法求a,b的最大公因數(shù)*/
上傳時(shí)間: 2015-09-11
上傳用戶:GavinNeko
Ma tla b 是當(dāng)今使用最為廣泛的數(shù)學(xué)軟件,它具有相當(dāng)強(qiáng)大的數(shù)值計(jì)算、數(shù)據(jù)處理、系統(tǒng) 分析、圖形顯示、甚至符號(hào)運(yùn)算功能,是一個(gè)完整的數(shù)學(xué)平臺(tái),但是它不能實(shí)現(xiàn)端口操作和 實(shí)時(shí)控制Borland C + +Builder是一種新穎的可視化編程語言,可方便實(shí)現(xiàn)交互界面、數(shù)據(jù) 采集和端口操作等,但是它在數(shù)值處理分析和算法工具等方面,效率遠(yuǎn)遠(yuǎn)低于Matlab語言
標(biāo)簽: tla Ma 數(shù)學(xué)軟件
上傳時(shí)間: 2014-01-24
上傳用戶:牛津鞋
C++ Standard Library provides a set of common classes and interfaces that greatly extend the core C++ language. The library, however, is not self-explanatory. To make full use of its components-and to benefit from their power-you need a resource that does far more than list the classes and their functions. The C++ Standard Library not only provides comprehensive documentation of each library component, it also offers clearly written explanations of complex concepts, describes the practical programming details needed for effective use, and gives example after example of working code.
標(biāo)簽: interfaces Standard provides Library
上傳時(shí)間: 2014-03-01
上傳用戶:lizhizheng88
用單鏈表實(shí)現(xiàn)對(duì)兩個(gè)無序 A,B表進(jìn)行合并并使的合并后的表按從小到大排序
上傳時(shí)間: 2013-11-30
上傳用戶:253189838
教師管理系統(tǒng)是在學(xué)校局域網(wǎng)架設(shè)的B/S結(jié)構(gòu)的辦公平臺(tái)。系統(tǒng)有四個(gè)模塊:系統(tǒng)設(shè)置,通知通告,領(lǐng)導(dǎo)信箱,文件中心。系統(tǒng)開發(fā)環(huán)境:JAVA,數(shù)據(jù)庫為Mysql,TOMCAT
標(biāo)簽: 管理系統(tǒng) 局域網(wǎng) 模塊
上傳時(shí)間: 2013-12-28
上傳用戶:zjf3110
GExperts is a set of tools built to increase the productivity of Delphi and C++Builder programmers by adding several features to the IDE. GExperts is developed as Open Source software and is contributed as freeware to the development community. Users are encouraged to download the source code and submit bug fixes and patches as well as new features for inclusion in the GExperts distribution.
標(biāo)簽: productivity programmers GExperts increase
上傳時(shí)間: 2014-11-27
上傳用戶:天誠24
設(shè)A和B是長(zhǎng)度相同的2個(gè)字符串。A和B的距離定義為相應(yīng)位置字符距離之和。2個(gè)非空格字符的距離是它們的ASCII碼之差的絕對(duì)值??崭衽c空格的距離為0;空格與其它字符的距離為一定值k。 字符串A的擴(kuò)展是在A中插入若干空格字符所產(chǎn)生的字符串。在字符串A和B的所有長(zhǎng)度相同的擴(kuò)展中,有一對(duì)距離最小的擴(kuò)展,該距離稱為字符串A和B的擴(kuò)展距離。 對(duì)于給定的字符串A和B,試設(shè)計(jì)一個(gè)算法,計(jì)算其擴(kuò)展距離。
標(biāo)簽: ASCII 字符 字符串 長(zhǎng)度
上傳時(shí)間: 2014-12-22
上傳用戶:15736969615
BNB20 Finds the constrained minimum of a function of several possibly integer variables. % Usage: [errmsg,Z,X,t,c,fail] = % BNB20(fun,x0,xstatus,xlb,xub,A,B,Aeq,Beq,nonlcon,settings,options,P1,P2,...) % % BNB solves problems of the form: % Minimize F(x) subject to: xlb <= x0 <=xub % A*x <= B Aeq*x=Beq % C(x)<=0 Ceq(x)=0 % x(i) is continuous for xstatus(i)=0 % x(i) integer for xstatus(i)= 1 % x(i) fixed for xstatus(i)=2 %
標(biāo)簽: constrained variables function possibly
上傳時(shí)間: 2014-01-13
上傳用戶:youth25
回溯(b a c k t r a c k i n g)是一種系統(tǒng)地搜索問題解答的方法。為了實(shí)現(xiàn)回溯,首先需要為問題定義一個(gè)解空間( solution space),這個(gè)空間必須至少包含問題的一個(gè)解(可能是最優(yōu)的)。在迷宮老鼠問題中,我們可以定義一個(gè)包含從入口到出口的所有路徑的解空間;在具有n 個(gè)對(duì)象的0 / 1背包問題中(見1 . 4節(jié)和2 . 2節(jié)),解空間的一個(gè)合理選擇是2n 個(gè)長(zhǎng)度為n 的0 / 1向量的集合,這個(gè)集合表示了將0或1分配給x的所有可能方法。當(dāng)n= 3時(shí),解空間為{ ( 0 , 0 , 0 ),( 0 , 1 , 0 ),( 0 , 0 , 1 ),( 1 , 0 , 0 ),( 0 , 1 , 1 ),( 1 , 0 , 1 ),( 1 , 1 , 0 ),( 1 , 1 , 1 ) }。
標(biāo)簽: 搜索
上傳時(shí)間: 2014-01-17
上傳用戶:jhksyghr
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1