VC6.0核心編程。主要涉及到windows消息,框架,mfc庫以及相關編程,com,activex技術,數(shù)據(jù)庫技術,網(wǎng)絡編程技術。為英文版本。 The 6.0 release of Visual C++ shows Microsoft s continued focus on Internet technologies and COM, which are key components of the new Windows Distributed interNet Application Architecture (DNA). In addition to supporting these platform initiatives, Visual C++ 6.0 also adds an amazing number of productivity-boosting features such as Edit And Continue, IntelliSense, AutoComplete, and code tips. These features take Visual C++ to a new level. We have tried to make sure that this book keeps you up to speed on the latest technologies being introduced into Visual C++.
上傳時間: 2016-01-02
上傳用戶:lmeeworm
2407C文件夾包括第8~16章的C語言代碼及使用說明。有如下子文件夾: 第8章數(shù)字輸入輸出8路開關量輸入輸出(8IOIN+8IOOUT); 第8章數(shù)字輸入輸出模塊(led); 第8章數(shù)字輸入輸出模塊(LED+KEY); 第9章事件管理器模塊(PWM); 第9章事件管理器模塊_編碼(QEP); 第9章事件管理器模塊_捕捉(cap); 第10章事件管理器模塊_定時器中斷(Timer_INT); 第10章模數(shù)轉換模塊(ADC); 第11章串行外設接口模塊(SPI +DA); 第11章串行外設接口模塊(led8py); 第12章串行通信接口模塊(SCI); 第13章局部控制器模塊(CAN); 第14章圖形液晶顯示模塊接口及應用(LCD); 第15章串行EEPROM的接口編程(eeprom); 第16章在TMS320LF2407上實現(xiàn)快速傅立葉變換(fft)。
上傳時間: 2016-01-04
上傳用戶:wlcaption
背包問題是關於最佳化的問題,要解最佳化問題可以使用「動態(tài)規(guī)劃」(Dynamic programming),從空集合開始,每增加一個元素就先求出該階段的最佳解,直到所有的元素加入至集合中,最後得到的就是最佳解。 以背包問題為例,我們使用兩個陣列value與item,value表示目前的最佳解所得之總價,item表示最後一個放至背包的水果,假設有負重量 1~8的背包8個,並對每個背包求其最佳解
標簽:
上傳時間: 2014-01-22
上傳用戶:aix008
說明 除了自身之外,無法被其它整數(shù)整除的數(shù)稱之為質數(shù),要求質數(shù)很簡單,但如何快速的求出質數(shù)則一直是程式設計人員與數(shù)學家努力的課題,在這邊介紹一個著名的 Eratosthenes求質數(shù)方法 解。 以背包問題為例,我們使用兩個陣列value與item,value表示目前的最佳解所得之總價,item表示最後一個放至背包的水果,假設有負重量 1~8的背包8個,並對每個背包求其最佳解。
標簽:
上傳時間: 2013-12-22
上傳用戶:二驅蚊器
/* This a simple genetic algorithm implementation where the */ /* evaluation function takes positive values only and the */ /* fitness of an individual is the same as the value of the */ /* objective function
標簽: implementation evaluation algorithm function
上傳時間: 2016-01-18
上傳用戶:wkchong
This program compress and recostruct using wavelets. We can select level of decomposition(here maximum 4 levels are given) of images using selected wavelet. For eg:-wavelets can be haar, db1, db2,dmey............... Decomposition can be viewed in figure. (Please note that select 256X256 image for better result.) Then compression can performed, PERFL2 give compression score. Then reconstruction can be performed. Each decompsition we can choose different threshold values. For each threshold value we can calculate mse,psnr,pq(picture quality), bit ratio etc. To get pq install pqs function .
標簽: decomposition recostruct compress wavelets
上傳時間: 2016-01-22
上傳用戶:liuchee
Returns weighted percentiles of a sample given the weight vector w % The idea is to give more emphasis in some examples of data as compared to % others by giving more weight. For example, we could give lower weights to % the outliers. % The motivation to write this function is to compute percentiles for Monte % Carlos simulations where some simulations are very bad (in terms of goodness % of fit between simulated and actual value) than the others and to give % the lower weights based on some goodness of fit criteria.
標簽: percentiles weighted Returns sample
上傳時間: 2016-01-28
上傳用戶:小儒尼尼奧
矩陣鍵盤驅動程序, unsigned char key(void) 只要調用這個函數(shù)即可實現(xiàn)
上傳時間: 2014-08-04
上傳用戶:GavinNeko
This code implements the shortest path algorithm via the simple scheme and fibonacci heap data structure. It has 3 kinds of testing data input method : random input by computer, reading from the file, reading from the key board.
標簽: implements algorithm fibonacci the
上傳時間: 2013-12-23
上傳用戶:ynzfm
用分支限界法求解背包問題(0/1背包) 1.問題描述:已知有N個物品和一個可以容納TOT重量的背包,每種物品I的重量為Weight,價值為Value。一個只能全放入或者不放入,求解如何放入物品,可以使背包里的物品的總價值最大。 2.設計思想與分析:對物品的選取與否構成一棵解樹,左子樹表示裝入,右表示不裝入,通過檢索問題的解樹得出最優(yōu)解,并用結點上界殺死不符合要求的結點。
上傳時間: 2016-02-09
上傳用戶:我們的船長