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

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

bit-error-rate

  • 1. 輸入caculator

    1. 輸入caculator,程序開始執行,繼續輸入3*4+5,回車后輸出17,繼續下一個計算或Ctrl+C退出。 2. 輸入caculator 3*4+5,程序執行輸出結果17。 3. 輸入caculator 3*4+5 33,程序執行輸出結果error: too many arguments。

    標簽: caculator 輸入

    上傳時間: 2014-01-22

    上傳用戶:weiwolkt

  • MAX1142是一款高性能的模入芯片

    MAX1142是一款高性能的模入芯片,采集范圍14-bit,支持SPI接口。   提供內部時鐘和外部時鐘采集方式。

    標簽: 1142 MAX 性能

    上傳時間: 2016-12-31

    上傳用戶:1101055045

  • 數值計算牛頓迭代法的matlab源程序 說明如下: %fun----input,the part as the form of f(x) in the equation f(x)=0 % ini

    數值計算牛頓迭代法的matlab源程序 說明如下: %fun----input,the part as the form of f(x) in the equation f(x)=0 % ini----input,sets the starting point to ini % err----input,sets admissible error % sol----output,returns the root of equation

    標簽: the equation matlab input

    上傳時間: 2014-01-12

    上傳用戶:妄想演繹師

  • Perl and XML XML is a text-based markup language that has taken the programming world by storm. Mor

    Perl and XML XML is a text-based markup language that has taken the programming world by storm. More powerful than HTML yet less demanding than SGML, XML has proven itself to be flexible and resilient. XML is the perfect tool for formatting documents with even the smallest bit of complexity, from Web pages to legal contracts to books. However, XML has also proven itself to be indispensable for organizing and conveying other sorts of data as well, thus its central role in web services like SOAP and XML-RPC. As the Perl programming language was tailor-

    標簽: programming text-based XML language

    上傳時間: 2014-01-07

    上傳用戶:jichenxi0730

  • 8單徑瑞利信道中的四發四收V-BLAST: (1) 請設計一種具體的導引輔助的信道估計方法

    8單徑瑞利信道中的四發四收V-BLAST: (1) 請設計一種具體的導引輔助的信道估計方法,用Simulink進行仿真,測量16QPSK調制時的誤碼率性能。畫出比特信噪比與信道估計均方誤差的關系曲線,畫出比特信噪比與誤碼率的關系曲線。 (2) 計算所設計方案的頻譜效率是多少,單位為bit/Hz/s。

    標簽: V-BLAST 信道 輔助 信道估計

    上傳時間: 2017-01-25

    上傳用戶:ainimao

  • 62256在單片機上的應用,C語言源碼,Keil uVision3工程文件,附原理圖及說明學習文檔 62256簡介: 62系列是最常用的單片機系統擴展RAM元器件

    62256在單片機上的應用,C語言源碼,Keil uVision3工程文件,附原理圖及說明學習文檔 62256簡介: 62系列是最常用的單片機系統擴展RAM元器件,其類型有6216、6232、6264、62128、62256或62512等多種,62后面的數字表示此元器件中可以存儲的位(單位:千bit),我們通常的說法是將此值除以8,比如62256將256除以8,我們一般稱之為32K的RAM。 如果學習過二進制就可以知道,區分兩個字節需要一根地址線就可以:0或者1;而區分四個字節需要2根地址線;區分八個字節需要三根地址線…..以此類推,我們可以計算出要區分32K的RAM區,需要15根地址線,也就是器件上面的A0-A14管腳用于確定唯一的一個字節內容。 我們現在學習的51單片機是8位的,所以必須用兩個IO口來聯接這個RAM器件,通常我們用P0(低字節)和P2(高字節)兩個端口來確定此器件的地址,而P0口是51單片機標準的總線口,是地址線和數據線復用的,所以與62256聯接時需要加一片鎖存器來鎖存地址。即先將地址送到鎖存器(通常用74HC373)中,然后P0口空閑下來后開始接收或發送數據至62256。

    標簽: 62256 uVision3 Keil RAM

    上傳時間: 2017-01-27

    上傳用戶:asdkin

  • PC與單片機雙向通訊智能溫控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #def

    PC與單片機雙向通訊智能溫控程序 #include <AT89X51.H> #include <intrins.h> #define Key_UP P1_0 #define Key_DOWN P1_1 #define Key_SET P1_2 #define RelayOutPort P2_0 #define LEDPort P0 #define DELPort P2_1 #define LEDTwoC P3_6 #define LEDThreeC P3_7 #define TMPort P2_7 #define INBUF_LEN 5 //數據長度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 , 0 } //發送緩沖區 unsigned char inbuf2[50] //接收緩沖區 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr TMOD |= 0x20 //TMOD: timer 1, mode 2, 8-bit reload PCON |= 0x80 //SMOD=1 TH1 = 0xFA //Baud:4800 fosc=11.0592MHz IE |= 0x90 //Enable Serial Interrupt TR1 = 1 // timer 1 run } //向串口發送一個字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    標簽: include intrins define Key_UP

    上傳時間: 2014-11-29

    上傳用戶:風之驕子

  • VB遙控播放器紅外遙控解碼 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sb

    VB遙控播放器紅外遙控解碼 #include <regX52.h> #define c(x) (x*110592/120000) sbit Ir_Pin=P3^2 sbit beep=P2^1 //sbit RELAY=P2^0 #define INBUF_LEN 4 //數據長度 unsigned char inbuf1[INBUF_LEN]={ 0 , 0 , 0 , 0 } //發送緩沖區 unsigned char inbuf2[50] //接收緩沖區 unsigned char count3 void init_serialcomm( void ) { SCON = 0x50 //SCON: serail mode 1, 8-bit UART, enable ucvr T2CON=0x30 TH2=0x00 TL2=0x00 RCAP2H=0xFF RCAP2L=0xDC TR2=1 } //向串口發送一個字符 void send_char_com( unsigned char ch) { SBUF=ch while (TI== 0 ) TI= 0

    標簽: include 110592 120000 define

    上傳時間: 2013-12-21

    上傳用戶:yph853211

  • This paper studies the problem of tracking a ballistic object in the reentry phase by processing ra

    This paper studies the problem of tracking a ballistic object in the reentry phase by processing radar measurements. A suitable (highly nonlinear) model of target motion is developed and the theoretical Cramer—Rao lower bounds (CRLB) of estimation error are derived. The estimation performance (error mean and

    標簽: processing ballistic the tracking

    上傳時間: 2014-10-31

    上傳用戶:yyyyyyyyyy

  • This paper studies the problem of tracking a ballistic object in the reentry phase by processing ra

    This paper studies the problem of tracking a ballistic object in the reentry phase by processing radar measurements. A suitable (highly nonlinear) model of target motion is developed and the theoretical Cramer—Rao lower bounds (CRLB) of estimation error are derived. The estimation performance (error mean and

    標簽: processing ballistic the tracking

    上傳時間: 2014-01-14

    上傳用戶:奇奇奔奔

主站蜘蛛池模板: 南宫市| 仁怀市| 武安市| 无锡市| 深水埗区| 东平县| 迁安市| 扎赉特旗| 五寨县| 天峨县| 湄潭县| 闽侯县| 乐昌市| 儋州市| 六盘水市| 双峰县| 屏东市| 汤阴县| 临安市| 大洼县| 宣化县| 岳阳市| 绥棱县| 广河县| 辰溪县| 江口县| 新龙县| 临洮县| 交口县| 准格尔旗| 天台县| 车致| 江孜县| 澎湖县| 延庆县| 苍山县| 巍山| 临洮县| 定安县| 济南市| 万年县|