亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

DMB-TH

DMB-TH(TerrestrialDigitalMultimediaTV/HandleBroadcasting)是由清華大學和北京凌訊華業科技有限公司提出的地面數字電視傳輸標準。
  • CSNG-I 伽馬能譜

    CSNG-I 伽馬能譜,自然伽馬能譜圖,U,Th,K

    標簽: CSNG-I 伽馬能譜

    上傳時間: 2015-04-13

    上傳用戶:longge

  • a sub-cell WENO reconstruction method

    We introduce a sub-cell WENO reconstruction method to evaluate spatial derivatives in the high-order ADER scheme. The basic idea in our reconstruction is to use only r stencils to reconstruct the point-wise values of solutions and spatial derivatives for the 2r-1 th order ADER scheme in one dimension, while in two dimensions, the dimension-by-dimension sub-cell reconstruction approach for spatial derivatives is employed. Compared with the original ADER scheme of Toro and Titarev (2002) [2] that uses the direct derivatives of reconstructed polynomials for solutions to evaluate spatial derivatives, our method not only reduces greatly the computational costs of the ADER scheme on a given mesh, but also avoids possible numerical oscillations near discontinuities, as demonstrated by a number of one- and two-dimensional numerical tests. All these tests show that the 5th-order ADER scheme based on our sub-cell reconstruction method achieves the desired accuracy, and is essentially non-oscillatory and computationally cheaper for problems with discontinuities.

    標簽: 高精度格式

    上傳時間: 2016-01-13

    上傳用戶:ccsdcczd

  • Enhanced+Radio+Access+Technologies

    Following chapter introduces the mobile communication, gives a short history of wireless communication evolution, and highlights some application scenarios predestined for the use of mobile devices. Cellular and wireless based systems related to different generations of mobile communication, including GSM, IS-95, PHS, AMPS, D-AMPS, cdma2000 and WCDMA are also described by this Chapter. Much attention in this chapter is given to express the wireless based networks, such as Wi-Fi and WiBro/WiMax, and wireless broadcasting systems, including DMB, DVB-H, and ISDB-T. We conclude the chapter with the future vision of mobile communication evolution

    標簽: Technologies Enhanced Access Radio

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • MIMO-OFDM Wireless Communications with MATLAB

    MIMO-OFDM is a key technology for next-generation cellular communications (3GPP-LTE, Mobile WiMAX, IMT-Advanced) as well as wireless LAN (IEEE 802.11a, IEEE 802.11n), wireless PAN (MB-OFDM), and broadcasting (DAB, DVB, DMB). This book provides a comprehensive introduction to the basic theory and practice of wireless channel modeling, OFDM, and MIMO, with MATLAB ? programs to simulate the underlying techniques on MIMO-OFDMsystems.Thisbookisprimarilydesignedforengineersandresearcherswhoare interested in learning various MIMO-OFDM techniques and applying them to wireless communications.

    標簽: Communications MIMO-OFDM Wireless MATLAB with

    上傳時間: 2020-05-28

    上傳用戶:shancjb

  • Mobile+Communications+An+Introduction+to+New+Media

    Do you have a mobile phone? We think you probably do, one way or another. We would also guess that you might use it for many diff erent things in the course of your everyday life—as a telephone certainly, but also as an address book, as a clock or watch, as a camera, or now as a connection to your computer, email and the internet. Th ere will be a range of people you use it to contact (or not), and various strategies you use to take calls—or send texts, or take photos, or receive emails, or search online (or not, in diff erent situations). Th ere are also likely to be a range of social relation- ships in your life that your mobile phone helps to maintain—or disrupts, or inter- venes in, or makes possible, or complicates, or just plain helps to handle.

    標簽: Communications Introduction Mobile Media New An to

    上傳時間: 2020-05-30

    上傳用戶:shancjb

  • LTC2756 18位乘法串行輸入電流輸出數模轉換器DAC模塊ALTIUM原理圖+PCB文件

    LTC2756 18位乘法串行輸入電流輸出數模轉換器DAC模塊ALTIUM原理圖+PCB文件,硬件4層板設計,大小為66mmx39mm,ALTIUM設計的工程文件,包括完整的原理圖和PCB文件,可以做為你的設計參考。 原理圖器件列表: Library Component Count : 14 Name                Description ---------------------------------------------------------------------------------------------------- AD8397ARDZ          Imported Capacitor           CAP.,1uF,X74,10V,10%,1206 Header 10X1 2.54 Header, 100mil, 2x1_1Header, 100mil, 2x1, Tin plated, TH Header, 100mil, 3x1 Header, 100mil, 3x1, Tin plated, TH KJDZ-2              快接端子 LT1012              LT1012 LT1360              LT1360 LTC2054_1           LTC2054 LTC2756AIG          LTC2756AIG LTC6244             Imported LTC6655             LTC6655 Resistor            RES.,1K OHMS,5%,1/16W,0603 SMA-KE              CONNECTOR, SHEILDED, END LAUNCH JACK, GOLD PLATED, FOR 0.062 PCB, EDGE MOUNTED

    標簽: 數模轉換器

    上傳時間: 2021-12-22

    上傳用戶:

  • linux內核編程指南

    因此,您想編寫一個內核模塊。您知道C,您已經編寫了一些可以作為進程運行的常規程序,現在您想知道真正的動作在哪里,一個通配指針可以擦掉文件系統,核心轉儲意味著重新啟動。內核模塊到底是什么?模塊是可以根據需要加載和卸載的代碼段。它們擴展了內核的功能,而無需重新引導系統。例如。模塊驅動程序的一種類型是設備驅動程序,它允許內核訪問沒有模塊的系統硬件,我們將不得不構建單片內核并將新功能直接添加到內核映像中,除了具有更大的內核之外,這還具有缺點每次我們想要新功能時都要求我們重建并重新啟動內核的過程So, you want to write a kernel module. You know C, you, ve written a few normal programs to run as processes, and now you want to get to where the real action is, to where a single wild pointer can wipe out your file system and a core dump means a reboot.What exactly is a kernel module? Modules are pieces of code that can be loaded and unloaded into th upon demand. They extend the functionality of the kernel without the need to reboot the system. For example.one type of module is the device driver, which allows the kernel to access hardware connected to the syste without modules, we would have to build monolithic kernels and add new functionality directly into the em ernel image, Besides having larger kernels

    標簽: linux

    上傳時間: 2022-03-30

    上傳用戶:

  • DS18B20原理及應用實例(源程序+原理圖+Proteus仿真)

    基于Proteus仿真前言:本文詳細介紹了DS18B20原理,并在后面舉例說明了其在單片機中的應用,所舉例子包含Proteus仿真電路圖,源程序,程序注釋詳細清楚。1、DS18B20簡介:DS18B20溫度傳感器是DALLAS公司生產的1-wire式單總線器件,具有線路簡單,體積小的特點,用它組成的溫度測量系統線路非常簡單,只要求一個端口即可實現通信。溫度測量范圍在一55℃~+125℃之間,分辨率可以從9~12位選擇,內部還有溫度上、下限報警設置。每個DS18B20芯片都有唯一的序列號,所以可以利用多個DS18B20同時連接在同一條總線上,組成多點測溫系統。但最多只能連接8個,如果數量過多,會使供電電源電壓過低,從而造成信號傳輸的不穩定。2、DS18B20結構:如右圖所示,DS18B20有三只引腳,VCC、DQ和GND。DQ為數字信號輸入/輸出端(DQ一般接控制器(單片機)的一個1/0口上,由于單總線為開漏所以需要外接一個4.7K的上拉電阻);GND為電源地;VDD為外接供電電源輸入端(在寄生電源接線方式時接地)。DS18B20內部結構主要由四部分組成:64位光刻ROM、溫度傳感器、非揮發的溫度報警觸發器TH和TL、配置寄存器。光刻ROM中的64位序列號是出廠前被光刻好的,它可以看作是該DS18B20的地址序列碼。64位光刻ROM的排列是:開始8位是產品類型標號,接著的48位是該DS1B20自身的序列號,最后8位是前面56位的CRC校驗碼(循環冗余校驗碼)。光刻ROM的作用是使每一個DS18B20都各不相同,這樣就可以實現一根總線上掛接多個DS18B20的目的。溫度傳感器可完成對溫度的測量,以12位轉化為例,用16位符號擴展的二進制補碼讀數形式提供。

    標簽: ds18b2 proteus

    上傳時間: 2022-07-02

    上傳用戶:

  • VIP專區-嵌入式/單片機編程源碼精選合集系列(91)

    VIP專區-嵌入式/單片機編程源碼精選合集系列(91)資源包含以下內容:1. 非常 好用的模擬選通開關.2. 移植到ARM s3c2410平臺的g722音頻編解碼庫和測試程序。.3. ACM-12864漢字液晶顯示驅動程序.4. A MPEG4 encoder, suit for ARM decode IP camera solution.5. Chipcon RF chip, CC1020 參考設計..6. TFT屏LTV350QV-F04的程序.7. RD800讀卡器開發包.8. 0781@52RD_Qt嵌入式圖形開發(入門篇.9. 新建文件夾!!!!!!!數電大實驗!!!!!!!!!!2001介紹.10. 飲水機測溫度原代碼 用匯編語言寫超過溫度可以報警.11. 用C語言寫的鍵盤掃描可以實現加減盛除的功能的計算器上面有電路圖.12. 用C語言寫的電子時鐘可以準確的讀出時間和進行時間小時分鐘秒的設置.13. 這是要S3C2440的詳細資料.14. S3C2410  BSP 開發板S3C2410 的板極支持包.15. 嵌入式軟件軟件方面的一本書。英文版.16. 等概率二進制碼,循環碼,跳頻碼,PPM-TH調制器,脈沖形成器,PPM-TH信號發送器。.17. Tiny printf function for embedded programming.18. 控制東西南北交通燈,非常有用!可以實現!.19. 嵌入式系統 —基于32位微處理器與實時操作系統 2006年春季 北京航空航天大學計算機學院.20. 基于SystemView 的AM調幅系統調制解調.21. 基于CPLD的交通燈系統設計.22. 很有用的哦!這是一個有關于發射電路的全部電路!.23. 基于T6963C的LCD液晶顯示的實現.doc發表在《自動化技術與應用》的軟件設計文章.24. 使用硬件I2C對E2PROM進行操作.25. 網上下的848主板的電路圖 希望對大家有用.26. 詳細解釋了vsftpd的設置等方面的內容.27. 居與ARM9的最小文件系統.28. 將模擬溫度傳感器與數字轉換接口電路集成在一起.29. 240128a液晶 詳細技術手冊(中文).30. hgo12864a液晶 詳細技術手冊 中文.31. 關于嵌入式C語言的一些精華資料.32. emc的實戰實例,注釋很詳細的.一定對大家有幫助. 1 of 5.33. emc的實戰例子 2 of 5 注釋很詳細,相信對大家一定有很大幫助..34. emc的實戰例子 3 of 5 注釋很詳細,相信對大家一定有很大幫助..35. emc的實戰例子 4 of 5 注釋很詳細,相信對大家一定有很大幫助..36. emc的實戰例子 5 of 5 注釋很詳細,相信對大家一定有很大幫助..37. 這里有一個"EDA技術基礎_第1章",謝謝大家支持!.38. 這是一篇課件_EDA技術基礎_第2章 希望大家支持!.39. 這里接著是"EDA技術基礎_第3章",謝謝大家支持!.40. 這里接下來是"EDA技術基礎_第4章" 謝謝大家!.

    標簽: 機械 工程設計

    上傳時間: 2013-07-05

    上傳用戶:eeworm

主站蜘蛛池模板: 鄂托克旗| 湖南省| 鄢陵县| 闸北区| 呼伦贝尔市| 甘泉县| 南木林县| 徐州市| 进贤县| 大庆市| 绿春县| 安国市| 西平县| 二连浩特市| 桐庐县| 庆城县| 寿阳县| 三明市| 科技| 宜春市| 仁布县| 固原市| 股票| 永寿县| 武威市| 英德市| 沁源县| 高邑县| 伊通| 图木舒克市| 治县。| 贵定县| 中卫市| 静安区| 蒙自县| 余庆县| 阳朔县| 岱山县| 城步| 武胜县| 平利县|