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

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

無(wú)

  • Data Warehousing and Data Mining

    W ?????????abooklikethistogether,manypeoplewhoneverhope to see their namesinprint get involved and provide alot of help. I wouldliketogivecreditwherecreditisdueandacknowledgethose people here. Firstandforemost,atleasthalfofthecreditforthisbookneedstogotomy wife,BrigitteKilger-Mattison. Brigittewasresponsible for editingall the mate- rial, creating all the graphics, and coordinating all the efforts of everyone else involvedinthisproject.Thisbookcouldnothavebeencompletedwithouther painstaking attention to detail, her dedication, and her loyalty.

    標簽: Data Warehousing Mining and

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • Propagation+of+Radiowaves+(3rd+edition)

    This edition updates and continues the series of books based on the residential courses on radiowave propagation organised by the IEE/IET. The first course was held in 1974, with lectures by H. Page, P. Matthews, D. Parsons, M.W. Gough, P.A. Watson, E. Hickin, T. Pratt, P. Knight, T.B. Jones, P.A. Bradley, B. Burgess and H. Rishbeth.

    標簽: Propagation Radiowaves edition 3rd of

    上傳時間: 2020-05-31

    上傳用戶:shancjb

  • Stochastic Geometry and Wireless Networks Volume I

    Part I provides a compact survey on classical stochastic geometry models. The basic models defined in this part will be used and extended throughout the whole monograph, and in particular to SINR based models. Note however that these classical stochastic models can be used in a variety of contexts which go far beyond the modeling of wireless networks. Chapter 1 reviews the definition and basic properties of Poisson point processes in Euclidean space. We review key operations on Poisson point processes (thinning, superposition, displacement) as well as key formulas like Campbell’s formula. Chapter 2 is focused on properties of the spatial shot-noise process: its continuity properties, its Laplace transform, its moments etc. Both additive and max shot-noise processes are studied. Chapter 3 bears on coverage processes, and in particular on the Boolean model. Its basic coverage characteristics are reviewed. We also give a brief account of its percolation properties. Chapter 4 studies random tessellations; the main focus is on Poisson–Voronoi tessellations and cells. We also discuss various random objects associated with bivariate point processes such as the set of points of the first point process that fall in a Voronoi cell w.r.t. the second point process.

    標簽: Stochastic Geometry Networks Wireless Volume and

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • DELPHI 正則式

    正則表達式用于字符串處理、表單驗證等場合,實用高效。現將一些常用的表達式收集于此,以備不時之需。 匹配中文字符的正則表達式: [\u4e00-\u9fa5] 評注:匹配中文還真是個頭疼的事,有了這個表達式就好辦了 匹配雙字節字符(包括漢字在內):[^\x00-\xff] 評注:可以用來計算字符串的長度(一個雙字節字符長度計2,ASCII字符計1) 匹配空白行的正則表達式:\n\s*\r 評注:可以用來刪除空白行 匹配HTML標記的正則表達式:<(\S*?)[^>]*>.*?</\1>|<.*? /> 評注:網上流傳的版本太糟糕,上面這個也僅僅能匹配部分,對于復雜的嵌套標記依舊無能為力 匹配首尾空白字符的正則表達式:^\s*|\s*$ 評注:可以用來刪除行首行尾的空白字符(包括空格、制表符、換頁符等等),非常有用的表達式 匹配Email地址的正則表達式:\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)* 評注:表單驗證時很實用 匹配網址URL的正則表達式:[a-zA-z]+://[^\s]* 評注:網上流傳的版本功能很有限,上面這個基本可以滿足需求 匹配帳號是否合法(字母開頭,允許5-16字節,允許字母數字下劃線):^[a-zA-Z][a-zA-Z0-9_]{4,15}$ 評注:表單驗證時很實用 匹配國內電話號碼:\d{3}-\d{8}|\d{4}-\d{7} 評注:匹配形式如 0511-4405222 或 021-87888822 匹配騰訊QQ號:[1-9][0-9]{4,} 評注:騰訊QQ號從10000開始 匹配中國郵政編碼:[1-9]\d{5}(?!\d) 評注:中國郵政編碼為6位數字 匹配身份證:\d{15}|\d{18} 評注:中國的身份證為15位或18位 匹配ip地址:\d+\.\d+\.\d+\.\d+ 評注:提取ip地址時有用。 匹配特定數字:

    標簽: DELPHI

    上傳時間: 2020-12-16

    上傳用戶:

  • 2N2905

    SI-PNP 60 V 0,6 A 0,6 W 100 MHz

    標簽: 2N2905

    上傳時間: 2021-07-02

    上傳用戶:xiangshuai

  • 復活節計算器

    復活節計算 int y, n, a, q, b, m, w, d, mm = 4; y = atoi(argv[1]); n = y-1900;  a = fmod(n,19); 

    標簽: 計算器 C語言

    上傳時間: 2021-07-09

    上傳用戶:scfan2004

  • fft信號分析

    快速傅里葉變換,fft應用實例。供學習,供參考。 原理:快速傅里葉變換 (fast Fourier transform), 即利用計算機計算離散傅里葉變換(DFT)的高效、快速計算方法的統稱,簡稱FFT。快速傅里葉變換是1965年由J.W.庫利和T.W.圖基提出的。采用這種算法能使計算機計算離散傅里葉變換所需要的乘法次數大為減少,特別是被變換的抽樣點數N越多,FFT算法計算量的節省就越顯著。

    標簽: fft 信號分析

    上傳時間: 2021-07-14

    上傳用戶:hhh4321

  • PROTEL99SE電路設計教程protell技術大全程簡明使用手冊Protel封裝庫至Allegr

    PROTEL99SE電路設計教程protell技術大全程簡明使用手冊Protel封裝庫至Allegro的轉化等學習文檔資料PROTEL 99 SE特性手冊.docPROTEL 99SE 簡明使用手冊.docProtel for Windows PCB 轉 GERBER文件.mhtProtel PCB 轉SCH全攻略.pdfProtel 原理圖-PCB到Cadence的數據轉換.mhtProtel99 SE Gerber File 輸出說明.mhtPROTEL99SE教程protell技術大全.docProtel到Allegro -CCT格式轉換.mhtProtel封裝庫至Allegro的轉化.pdfProtel常見錯誤.pdfPRTEL99的PCB文件生成GERBER文件流程.mhtW-Protel99SE精彩教程.chm電路設計與制板Protel99入門與提高.pdf

    標簽: protel99se 電路設計

    上傳時間: 2021-10-15

    上傳用戶:

  • AD7790 ADC芯片數據手冊中文版

    AD7790是一款適合低頻測量應用的低功耗、完整模擬前端,內置一個低噪聲16位Σ-Δ型ADC,一路差分輸入可配置為緩沖或無緩沖模式,此外還有一個增益可設置為1、2、 4或8的數字PGA。該器件采用內部時鐘工作,因此,用戶不必為其提供時鐘源。器件的輸出數據速率可通過軟件編程設置,可在9.5 Hz至120 Hz的范圍內變化,更新速率較低時均方根(RMS)噪聲為1.1 μV。內部時鐘頻率可以使用系數2、 4或8進行分頻,從而可以降低功耗。更新速率、截止頻率和建立時間與時鐘頻率成比例變化。這款器件采用2.5 V至5.25 V電源供電,工作電壓為3 V時,最大功耗為225 μW,采用10引腳MSOP封裝。

    標簽: ad7790 adc 芯片

    上傳時間: 2021-10-25

    上傳用戶:得之我幸78

  • 高速電路設計 詳細基礎理論知識

    設計高速電路必須考慮高速訊 號所引發的電磁干擾、阻抗匹配及串音等效應,所以訊號完整性 (signal  integrity)將是考量設計電路優劣的一項重要指標,電路日異複雜必須仰賴可 靠的軟體來幫忙分析這些複雜的效應,才比較可能獲得高品質且可靠的設計, 因此熟悉軟體的使用也將是重要的研究項目之一。另外了解高速訊號所引發之 各種效應(反射、振鈴、干擾、地彈及串音等)及其克服方法也是研究高速電路 設計的重點之一。目前高速示波器的功能越來越多,使用上很複雜,必須事先 進修學習,否則無法全盤了解儀器之功能,因而無法有效發揮儀器的量測功能。 其次就是高速訊號量測與介面的一些測試規範也必須熟悉,像眼圖分析,探針 效應,抖動(jitter)測量規範及高速串列介面量測規範等實務技術,必須充分 了解研究學習,進而才可設計出優良之教學教材及教具。

    標簽: 高速電路

    上傳時間: 2021-11-02

    上傳用戶:jiabin

主站蜘蛛池模板: 萨迦县| 交口县| 宁武县| 临清市| 八宿县| 孟州市| 开阳县| 莒南县| 琼结县| 五寨县| 抚松县| 武城县| 额尔古纳市| 山东省| 孝感市| 赫章县| 定远县| 若尔盖县| 峡江县| 西和县| 兴城市| 远安县| 鲜城| 南汇区| 浠水县| 舟山市| 菏泽市| 旌德县| 同仁县| 邵阳市| 曲松县| 泽库县| 永清县| 敦化市| 灌云县| 长兴县| 靖江市| 芦溪县| 青州市| 依兰县| 桑日县|