PIC_Hi-Tech_C_Mike_Pearces_I2C_routines * Use 10 MHz crystal frequency. * Use Timer0 for ten millisecond looptime. * Blink "Alive" LED every two and a half seconds. * Use pushbutton to exercise Screens utility.
標(biāo)簽: PIC_Hi-Tech_C_Mike_Pearces_I C_routines Use frequency
上傳時間: 2013-12-19
上傳用戶:標(biāo)點符號
his procedure is the power spectral density of the simulation, 3 signal source on the specific circumstances, see the "modern digital signal processing" Introduction to the first volume, P202, exercise 5. Experimental Methods
標(biāo)簽: the simulation procedure spectral
上傳時間: 2014-01-17
上傳用戶:金宜
SSD3參考答案 exercise中缺少exercise4之后的部分
標(biāo)簽: SSD3
上傳時間: 2016-06-12
上傳用戶:EnumaElish
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.)
上傳時間: 2017-04-01
上傳用戶:糖兒水嘻嘻
1.Describe a Θ(n lg n)-time algorithm that, given a set S of n integers and another integer x, determines whether or not there exist two elements in S whose sum is exactly x. (Implement exercise 2.3-7.) #include<stdio.h> #include<stdlib.h> void merge(int arr[],int low,int mid,int high){ int i,k; int *tmp=(int*)malloc((high-low+1)*sizeof(int)); int left_low=low; int left_high=mid; int right_low=mid+1; int right_high=high; for(k=0;left_low<=left_high&&right_low<=right_high;k++) { if(arr[left_low]<=arr[right_low]){ tmp[k]=arr[left_low++]; } else{ tmp[k]=arr[right_low++]; } } if(left_low<=left_high){ for(i=left_low;i<=left_high;i++){ tmp[k++]=arr[i]; } } if(right_low<=right_high){ for(i=right_low;i<=right_high;i++) tmp[k++]=arr[i]; } for(i=0;i<high-low+1;i++) arr[low+i]=tmp[i]; } void merge_sort(int a[],int p,int r){ int q; if(p<r){ q=(p+r)/2; merge_sort(a,p,q); merge_sort(a,q+1,r); merge(a,p,q,r); } } int main(){ int a[8]={3,5,8,6,4,1,1}; int i,j; int x=10; merge_sort(a,0,6); printf("after Merging-Sort:\n"); for(i=0;i<7;i++){ printf("%d",a[i]); } printf("\n"); i=0;j=6; do{ if(a[i]+a[j]==x){ printf("exist"); break; } if(a[i]+a[j]>x) j--; if(a[i]+a[j]<x) i++; }while(i<=j); if(i>j) printf("not exist"); system("pause"); return 0; }
上傳時間: 2017-04-01
上傳用戶:糖兒水嘻嘻
ADSP Computer exercise
標(biāo)簽: ADSP
上傳時間: 2017-12-23
上傳用戶:詹姆斯邵
n present power system, the engineers face variety of challenges in planning, construction and operation. In some of the problems, the engineers need to use managerial talents. In system design or upgrading the entire system into automatic control instead of slow response of human operator, the engineers need to exercise more technical knowledge and experience. It is principally the engi- neer’s ability to achieve the success in all respect and provide the reliable and uninterrupted service to the customers. This chapter covers some important areas of the traditional power system that helps engineers to overcome the challenges. It emphasizes the characteristics of the various components of a power system such as generation, transmission, distribution, protection and SCADA system. During normal operating conditions and disturbances, the acquired knowledge will pro- vide the engineers the ability to analyse the performance of the complex system and execute future improvement
上傳時間: 2020-06-07
上傳用戶:shancjb
斯坦福大學(xué)-深度學(xué)習(xí)基礎(chǔ)教程.pdfUFLDL教程 From Ufldl 說明:本教程將闡述無監(jiān)督特征學(xué)習(xí)和深入學(xué)習(xí)的主要觀點。通過學(xué)習(xí),你也將實現(xiàn)多個功能 學(xué)習(xí)/深度學(xué)習(xí)算法,能看到它們?yōu)槟愎ぷ鳎W(xué)習(xí)如何應(yīng)用/適應(yīng)這些想法到新問題上。 本教程假定機器學(xué)習(xí)的基本知識(特別是熟悉的監(jiān)督學(xué)習(xí),邏輯回歸,梯度下降的想法),如果 你不熟悉這些想法,我們建議你去這里 機器學(xué)習(xí)課程 (http://openclassroom.stanford.edu/MainFolder/CoursePage.php? course=MachineLearning) ,并先完成第II,III,IV章(到邏輯回歸)。 稀疏自編碼器 神經(jīng)網(wǎng)絡(luò) 反向傳導(dǎo)算法 梯度檢驗與高級優(yōu)化 自編碼算法與稀疏性 可視化自編碼器訓(xùn)練結(jié)果 稀疏自編碼器符號一覽表 exercise:Sparse Autoencoder 矢量化編程實現(xiàn) 矢量化編程 邏輯回歸的向量化實現(xiàn)樣例 神經(jīng)網(wǎng)絡(luò)向量化 exercise:Vectorization
標(biāo)簽: 深度學(xué)習(xí)
上傳時間: 2022-03-27
上傳用戶:kingwide
VIP專區(qū)-嵌入式/單片機編程源碼精選合集系列(117)資源包含以下內(nèi)容:1. (1)可以實時顯示當(dāng)前時間。 (2)可以用鍵盤設(shè)定多個預(yù)定打鈴時間。 (3)學(xué)有余力的同學(xué)可以增加語音提示的功能.2. 關(guān)于ARM控制鼠標(biāo)運行的C程序 所用IC為LPC2132等,程序包含接收和發(fā)送數(shù)據(jù)子程序.3. 來自PhysioNet的心電分析軟件WFDB使用指南.4. 單片機接口技術(shù)實用子程序配套源代碼 內(nèi)含關(guān)于串口通信、鍵盤控制、液晶顯示等功能的源碼.5. Boot code for ADM5120 with serial console for Edimax router..6. 論文名字為:多模式自適應(yīng)嵌入式實時視覺監(jiān)督。在開發(fā)智能監(jiān)控攝像機時這篇論文會對研究者又幫助。.7. bootloader源代碼.8. 匯編的雷達(dá)程序代碼.9. 這個是51的光電隔離設(shè)計。.10. nios ii在電機控制中的應(yīng)用.11. CPLD控制的數(shù)據(jù)采集器原理圖.12. 關(guān)于三星的s3c2410芯片的開發(fā)板的原理圖.13. 本程序段為mifare one 卡讀寫程序的子程序 也是關(guān)鍵程序.14. AT89C2051的設(shè)計手冊。.15. 這個是有關(guān)DS12887的資料,超級詳細(xì)的..解釋的很明白.16. s3c44b0 bios起動源程序.17. 一個Megaco實現(xiàn)源代碼.18. FPGA的Nios配合時如何計算SDRAM相位的文章.19. This an exercise in using finite state machines.基于ALTERA的DE2開發(fā) 平臺.20. 嵌入式微處理器系統(tǒng) 崔光佐 普適計算與應(yīng)用實驗室 北京大學(xué)現(xiàn)代教育技術(shù)中心 www.uclab.org.21. SST39VF160操作子程序.22. 基于51單片機的單工呼叫系統(tǒng)詳細(xì)源代碼程序.23. AT91RM9200測試程序.24. TGLCMLIMIT64A接口程序(模擬方式).25. Version Management with CVS.26. PSoC(可編程片上系統(tǒng))是Cypress半導(dǎo)體公司生產(chǎn)的包含有8位微處理器核和數(shù)字與模擬混合的信號陣列芯片.27. 你相學(xué)會CPLD,FPGA,教程,快速,么,你想使用硬件編程語言么.那就看這個吧,只要5分鐘.讓你入門.28. S3C2410下LCD驅(qū)動程序移植 及GUI程序編寫 以一個實例來敘述S3C2410下一個驅(qū)動程序的編寫(本文的初始化源碼以華恒公司提供的s3c2410fb.c為基礎(chǔ))及簡單的GUI程序的編寫。.29. s3c44b0 的開發(fā)板測試的所有源代碼及程序?。?!匯編代碼主要完成系統(tǒng)初始化.30. 周立功實驗串口調(diào)試! 周立功實驗串口調(diào)試!.31. 周立功實驗SPI調(diào)試! 周立功實驗SPI調(diào)試!.32. 周立功實驗SSP調(diào)試! 周立功實驗SSP調(diào)試!.33. 周立功實驗定時器調(diào)試! 周立功實驗定時器調(diào)試!.34. 周立功實驗PWM調(diào)試! 周立功實驗PWM調(diào)試!.35. PT0611打印機代碼,可用于學(xué)習(xí)用,如果有需要可以下載.36. Cyclone1C20的Nios開發(fā)板完整原理圖Protel格式.37. 尋跡小車主控程序.38. 語言嵌入式系統(tǒng)編程修煉之道,非常有用的嵌入式開發(fā)語言學(xué)習(xí).39. 附件為at91sam9261dk評估板原理圖,protel99se格式的.40. 51單片機ADS7846適合用在4線制觸摸屏.
上傳時間: 2013-06-01
上傳用戶:eeworm
蟲蟲下載站版權(quán)所有 京ICP備2021023401號-1