程佩青的數字信號處理答案,里面包含了DFT,z變換, FFT等的資源的答案,非常經典!
標簽: 數字信號處理
上傳時間: 2020-02-23
上傳用戶:hainu_hzh
Emerging technologies such as WiFi and WiMAX are profoundly changing the landscape of wireless broadband. As we evolve into future generation wireless networks, a primary challenge is the support of high data rate, integrated multi- media type traffic over a unified platform. Due to its inherent advantages in high-speed communication, orthogonal frequency division multiplexing (OFDM) has become the modem of choice for a number of high profile wireless systems (e.g., DVB-T, WiFi, WiMAX, Ultra-wideband).
標簽: Broadband Wireless Networks
上傳時間: 2020-05-26
上傳用戶:shancjb
Multiple-Input Multiple-Output (MIMO) systems have recently been the subject of intensive consideration in modem wireless communications as they offer the potential of providing high capacity, thus unleashing a wide range of applications in the wireless domain. The main feature of MIMO systems is the use of space-time processing and Space-Time Codes (STCs). Among a variety of STCs, orthogonal Space-Time Block Codes (STBCs) have a much simpler decoding method, compared to other STCs
標簽: Orthogonal Space-Time Processing Complex
上傳時間: 2020-05-26
上傳用戶:shancjb
The motivation to write about the History of Wireless comes from Auguste Comte (1798-1857), a French philosopher who is termed the father of positivism and modem sociology [Les Maximes d'Auguste Comte (Auguste Comte's Mottos), http://www.membres.lycos.fr/clotilde/l: On ne connaitpas complgtement une science tant qu'on n'en saitpas l'histoire. (One does not know completely a science as long as one does not know its history.)
上傳時間: 2020-05-27
上傳用戶:shancjb
Emerging technologies such as WiFi and WiMAX are profoundly changing the landscape of wireless broadband. As we evolve into future generation wireless networks, a primary challenge is the support of high data rate, integrated multi- media type traffic over a unified platform. Due to its inherent advantages in high-speed communication, orthogonal frequency division multiplexing (OFDM) has become the modem of choice for a number of high profile wireless systems (e.g., DVB-T, WiFi, WiMAX, Ultra-wideband).
標簽: OFDM-Based Broadband Networks Wireless
上傳時間: 2020-05-31
上傳用戶:shancjb
Without doubt, the age of information communications is upon 11s. The rapid pace of technological advancement in digital data communications can be wit- nessed in a multitude of applications in our day-to-day existence. In recent years, the widespread proliferation of wireless digital cornmunications hass been readily accepted by the general population worldwide; this is nearly unpa~rallcled in few other human scientific achievements in terms of scope and speed of devel- opment.
標簽: Practical Wireless Design Modem Data
上傳時間: 2020-05-31
上傳用戶:shancjb
This book is an outgrowth of the pioneering development work done by InterDigital Com- munication Corporation in 3rd Generation TDD WCDMA Technology. Many engineers and managers were involved in this development, which spanned a wide range of tech- nology areas, including system architecture, radio interface, radio modem design, radio resource management and hardware/software implementation. In addition, TDD WCDMA technology had many direct and indirect contributors across the globe in the context of the development of the 3GPP TDD WCDMA Standard.
上傳時間: 2020-06-01
上傳用戶:shancjb
function y=lagr(x0,y0,x) %x0,y0為節點 %x是插值點 n=length(x0); m=length(x); for i=1:m z=x(i); s=0.0; for k=1:n p=1.0; for j=1:n if j~=k p=p*(z-x0(j))/(x0(k)-x0(j)); end end s=p*y0(k)+s; end y(i)=s; end
標簽: lagr
上傳時間: 2020-06-09
上傳用戶:shiyc2020
keystone_sinc是用sinc插值法校正距離走動; keystone_czt使用chirp-z變換校正距離走動;
上傳時間: 2020-06-17
上傳用戶:mhao123
正則表達式用于字符串處理、表單驗證等場合,實用高效。現將一些常用的表達式收集于此,以備不時之需。 匹配中文字符的正則表達式: [\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地址時有用。 匹配特定數字:
上傳時間: 2020-12-16
上傳用戶: