Klaas Gadeyne, a Ph.D. student in the Mechanical Engineering Robotics Research Group at K.U.Leuven, has developed a C++ Bayesian Filtering Library that includes software for Sequential Monte Carlo methods, Kalman filters, particle filters, etc.
標(biāo)簽: Engineering Mechanical Robotics Research
上傳時(shí)間: 2015-09-07
上傳用戶:Altman
說明: 此計(jì)算機(jī)可以計(jì)算同時(shí)超過多個(gè)操作項(xiàng)的什. 例如: y = 3 + 64 * (2 + 3^5) + sinPI 的值, 用括號(hào)區(qū)分優(yōu)先級(jí),如果有大量很長的算式需要計(jì)算,可以試一下這個(gè)計(jì)算器. 開發(fā)語言: C#語言,用Stack原理實(shí)現(xiàn)
標(biāo)簽: sinPI 64 計(jì)算機(jī) 計(jì)算
上傳時(shí)間: 2013-12-22
上傳用戶:change0329
前 言 軟件質(zhì)量是被大多數(shù)程序員掛在嘴上而不是放在心上的東西! 除了完全外行和真正的編程高手外,初讀本書,你最先的感受將是驚慌:“哇!我以前捏造的C++/C程序怎么會(huì)有那么多的毛病?” 別難過,作者只不過比你早幾年、多幾次驚慌而已。 請(qǐng)花一兩個(gè)小時(shí)認(rèn)真閱讀這本百頁經(jīng)書,你將會(huì)獲益匪淺,這是前面N-1個(gè)讀者的建議。
上傳時(shí)間: 2013-12-18
上傳用戶:zhuoying119
CCS編程環(huán)境 使用的是匯編加C的混合編程方法: The programme of the Correlation Algorithm. Using INT2 to get the input signal. Array x, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. Array y, in first step, is the input signal produced by programme, in next step, is the input signal get from A/D, the length is 128, 32-bit floating point. Array cor is the Correlation result, the length is 255, 32-bit floating point.
標(biāo)簽: Correlation Algorithm programme the
上傳時(shí)間: 2013-12-21
上傳用戶:leixinzhuo
C# BigInteger class. BigInteger.cs is a csharp program. It is the BIgInteger class. It has methods: abs() , FermatLittleTest(int confidence) ,gcd(BigInteger bi) , genCoPrime(int bits, Random rand) , genPseudoPrime(int bits, int confidence, Random rand) , genRandomBits(int bits, Random rand) , isProbablePrime(int confidence) , isProbablePrime() , Jacobi(BigInteger a, BigInteger b) , LucasSequence(BigInteger P, BigInteger Q, BigInteger k, BigInteger n) ,max(BigInteger bi) , min(BigInteger bi) , modInverse(BigInteger modulus) , RabinMillerTest(int confidence) ,
標(biāo)簽: BigInteger class BIgInteger program
上傳時(shí)間: 2013-12-23
上傳用戶:ynzfm
Embest S3C44B0X Evaluation Board RTC Test Example RTC Check(Y/N)? y Set Default Time at 2004-12-31 FRI 23:59:59 Set Alarm Time at 2005-01-01 00:00:01 ... RTC Alarm Interrupt O.K. ... Current Time is 2005-01-01 SAT 00:00:01 RTC Working now. To set date(Y/N)? y Current date is (2005,01,01, SAT). input new date (yy-mm-dd w): 5-2-23 3 Current date is: 2005-02-23 WED RTC Working now. To set time(Y/N)? y Current time is (00:00:21). To set time(hh:mm:ss): 19:32:5 Current Time is 2005-02-23 WED 19:32:
標(biāo)簽: Evaluation RTC S3C44B0X Default
上傳時(shí)間: 2014-01-03
上傳用戶:baiom
經(jīng)典C語言程序設(shè)計(jì)100例1-10 如【程序1】 題目:有1、2、3、4個(gè)數(shù)字,能組成多少個(gè)互不相同且無重復(fù)數(shù)字的三位數(shù)?都是多少? 1.程序分析:可填在百位、十位、個(gè)位的數(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) } }
標(biāo)簽: 100 10 C語言 程序設(shè)計(jì)
上傳時(shí)間: 2013-12-14
上傳用戶:hfmm633
代入法的啟發(fā)示搜索 我的代碼實(shí)現(xiàn)是:按照自然語言各字母出現(xiàn)頻率的大小從高到低(已經(jīng)有人作國統(tǒng)計(jì)分析了)先生成一張字母出現(xiàn)頻率統(tǒng)計(jì)表(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) ,再對(duì)密文字母計(jì)算頻率,并按頻率從高到低生成一張輸入密文字母的統(tǒng)計(jì)表(B),通過兩張表的對(duì)應(yīng)關(guān)系,不斷用A中的字母去替換B中的字母,搜索不成功時(shí)就回退,在這里回朔是一個(gè)關(guān)鍵。
上傳時(shí)間: 2015-10-24
上傳用戶:wanqunsheng
k均值算法是模式識(shí)別的聚分類問題,這是用C實(shí)現(xiàn)其算法以下是程序源代碼
上傳時(shí)間: 2014-01-15
上傳用戶:風(fēng)之驕子
使用C++實(shí)現(xiàn)的Graham掃描法(求解凸包問題),可設(shè)置生成隨機(jī)點(diǎn)的個(gè)數(shù)、樣式,同時(shí)支持設(shè)置顯示范圍、顯示算法處理時(shí)間及使用文件導(dǎo)入導(dǎo)出點(diǎn)等功能。(文件格式為,頭四個(gè)字節(jié)是點(diǎn)的個(gè)數(shù),以后分別是各個(gè)點(diǎn)的x坐標(biāo)和y坐標(biāo),每個(gè)數(shù)值均占4字節(jié))。
標(biāo)簽: Graham
上傳時(shí)間: 2014-11-29
上傳用戶:pompey
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1