/** * @author jakcy_wu(wujichun) * * 預(yù)測(cè)分析--本算法只適用于受周期變化或者波動(dòng)影響的數(shù)據(jù) * 權(quán)值移動(dòng)平均算法 * 本期預(yù)測(cè)值=(前期值*權(quán)數(shù))求和/n * * 默認(rèn)權(quán)值為{1,1,1},取最近3次的平均 * 注意權(quán)值和必須=權(quán)值集合.length */
標(biāo)簽: jakcy_wu wujichun author 算法
上傳時(shí)間: 2014-01-26
上傳用戶:weiwolkt
C++完美演繹 經(jīng)典算法 如 /* 頭文件:my_Include.h */ #include <stdio.h> /* 展開(kāi)C語(yǔ)言的內(nèi)建函數(shù)指令 */ #define PI 3.1415926 /* 宏常量,在稍后章節(jié)再詳解 */ #define circle(radius) (PI*radius*radius) /* 宏函數(shù),圓的面積 */ /* 將比較數(shù)值大小的函數(shù)寫(xiě)在自編include文件內(nèi) */ int show_big_or_small (int a,int b,int c) { int tmp if (a>b) { tmp = a a = b b = tmp } if (b>c) { tmp = b b = c c = tmp } if (a>b) { tmp = a a = b b = tmp } printf("由小至大排序之后的結(jié)果:%d %d %d\n", a, b, c) } 程序執(zhí)行結(jié)果: 由小至大排序之后的結(jié)果:1 2 3 可將內(nèi)建函數(shù)的include文件展開(kāi)在自編的include文件中 圓圈的面積是=201.0619264
標(biāo)簽: my_Include include define 3.141
上傳時(shí)間: 2014-01-17
上傳用戶:epson850
本系統(tǒng)采用A. 系統(tǒng)需求分析報(bào)告(設(shè)計(jì)方法/數(shù)據(jù)流圖/數(shù)據(jù)字典) B. 數(shù)據(jù)庫(kù)的信息要求報(bào)告(E—R圖及關(guān)系數(shù)據(jù)模型) C. 數(shù)據(jù)庫(kù)的操作和應(yīng)用要求報(bào)告(模塊結(jié)構(gòu)圖<概念結(jié)構(gòu)設(shè)計(jì)及邏輯結(jié)構(gòu)設(shè)計(jì)>) D. 調(diào)試中出現(xiàn)的問(wèn)題及解決方法(物理設(shè)計(jì),調(diào)試及運(yùn)行,維護(hù)) E. 訪問(wèn)數(shù)據(jù)庫(kù)的方式(ODBC,
上傳時(shí)間: 2013-12-27
上傳用戶:日光微瀾
無(wú)線數(shù)傳電臺(tái)串口通信C程序源碼 電臺(tái)型號(hào)為深圳友迅達(dá)公司的F201/B無(wú)線數(shù)傳電臺(tái)
標(biāo)簽: 201 無(wú)線 數(shù)傳電臺(tái) 串口通信
上傳時(shí)間: 2014-01-24
上傳用戶:王小奇
A) 實(shí)現(xiàn)虛擬存儲(chǔ)B) 實(shí)現(xiàn)對(duì)文件的按名存取C) 實(shí)現(xiàn)對(duì)文件的按內(nèi)容存取D) 實(shí)現(xiàn)對(duì)文件的 高速輸入輸出(17) 分頁(yè)顯示當(dāng)前文件 ... A) 執(zhí)行SPLIB B) 執(zhí)行SPDOS C) 裝載拼音模塊D) 裝載五筆字型輸入模塊(32) 在漢字輸入狀態(tài)下,按下Shift+a組合鍵后,輸入了__。
上傳時(shí)間: 2013-12-23
上傳用戶:zhoujunzhen
A.執(zhí)行SPLIB B.執(zhí)行SPDOS C.裝載拼音模塊D.裝載五筆字型輸入模塊32.在漢字輸入狀態(tài)下, 按下Shift+A組合鍵后,輸入了_______。 ... A.按原代碼方式B.按指定字體C.按標(biāo)準(zhǔn)方式D. 按分欄方式41.FoxBASE啟動(dòng)后,在圓點(diǎn)"."提示符下,執(zhí)行命令文件MAIN.
上傳時(shí)間: 2015-04-02
上傳用戶:極客
卡爾曼濾波器matlab源代碼。 function [Y,PY,KC]=myKalman(x,A,B,Q,H,R,y0,P0) 這是我課程設(shè)計(jì)時(shí)做的。
標(biāo)簽: function myKalman matlab PY
上傳時(shí)間: 2014-10-28
上傳用戶:agent
用Matlab軟件以及雅克比迭代和高斯-賽德?tīng)柕夥匠探MAx=b,分析、比較其結(jié)果
上傳時(shí)間: 2015-04-04
上傳用戶:123456wh
算法ebook(10部算法經(jīng)典著作的合集) 算法ebook> 10部算法經(jīng)典著作的合集 chm格式 (1)Fundamentals of Data Structures by Ellis Horowitz and Sartaj Sahni (2)Data Structures, Algorithms and Program Style Using C by James F. Korsh and Leonard J. Garrett (3)Data Structures and Algorithm Analysis in C by Mark Allen Weiss (4)Data Structures: From Arrays to Priority Queues by Wayne Amsbury (5)Information Retrieval: Data Structures & Algorithms edited by William B. Frakes and Ricardo Baeza-Yates (6)Introduction to Algorithms by Thomas H. Cormen, Charles E. Leiserson, and Ronald L. Rivest (7)Practical Data Structures in C++ by Bryan Flamig (8)Reliable Data Structures in C by Thomas Plum (9)Data Structures and Algorithms Alfred V. Aho, Bell Laboratories, Murray Hill, New Jersey John E. Hopcroft, Cornell University, Ithaca, New York Jeffrey D. Ullman, Stanford University, Stanford, California (10)DDJ Algorithms and Data Structures Articles
標(biāo)簽: ebook Fundamentals Structures Ellis
上傳時(shí)間: 2015-04-04
上傳用戶:tfyt
這是一個(gè)分別用Bezier曲線和B樣條曲線進(jìn)行曲線擬合的例子 程序用VB6.0中文版編寫(xiě) 例子中需要一個(gè)窗體和一個(gè)按鈕(使用默認(rèn)的名字) 在本例中,黑色的線條是對(duì)坐標(biāo)系上各點(diǎn)的直接連線 黃色的線僅對(duì)點(diǎn)間連線進(jìn)行近似擬合,并不通過(guò)每一個(gè)點(diǎn),使用的是B樣條曲線 藍(lán)色的線通過(guò)除第一個(gè)點(diǎn)和最后一個(gè)點(diǎn)之外的每一個(gè)點(diǎn),使用的是Bezier曲線
上傳時(shí)間: 2014-11-06
上傳用戶:manking0408
蟲(chóng)蟲(chóng)下載站版權(quán)所有 京ICP備2021023401號(hào)-1