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

蟲(chóng)蟲(chóng)首頁(yè)| 資源下載| 資源專(zhuān)輯| 精品軟件
登錄| 注冊(cè)

Time-Delay

  • Asymptotic Stability and Boundedness of Delay Switching Diffusions

    Asymptotic Stability and Boundedness of Delay Switching Diffusions

    標(biāo)簽: Boundedness Asymptotic Diffusions Stability

    上傳時(shí)間: 2013-12-21

    上傳用戶:電子世界

  • Transition-Time Optimization for Switched-Mode Dynamical Systems

    Transition-Time Optimization for Switched-Mode Dynamical Systems

    標(biāo)簽: Transition-Time Switched-Mode Optimization Dynamical

    上傳時(shí)間: 2017-09-28

    上傳用戶:xinyuzhiqiwuwu

  • RTX-51 Real-Time翻譯.pdf

    RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯 RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯 RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯 RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯 RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯 RTX-51 Real-Time翻譯, RTX-51 Real-Time翻譯

    標(biāo)簽: RTX-51

    上傳時(shí)間: 2015-06-16

    上傳用戶:fatemeh

  • AVR單片機(jī)轉(zhuǎn)速表

    /****************************************************************                  外部晶振8M                  PA0~3:四位數(shù)碼管的位選                  PB0~7:數(shù)碼管的8位段選                  外部中斷0用于計(jì)數(shù)                  定時(shí)器0溢出中斷的定時(shí)為1ms                  說(shuō)明 :檢測(cè)到水流較小時(shí),繼電器延時(shí)1秒關(guān)閉  ******************************************************************/                #include<iom16v.h>   #include<macros.h>   #define uchar unsigned char   #define uint unsigned int       char led_7[10]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F};  //數(shù)碼管段選        char position[4]={0xfe,0xfd,0xfb,0xf7};//數(shù)碼管位選        uint sumnum=0;  //用于記錄1000ms內(nèi)進(jìn)入中斷的次數(shù)        uint time=0;   //記錄進(jìn)入比較定時(shí)器0的次數(shù)        uint num=0;     //記錄1ms內(nèi)進(jìn)入中斷的次數(shù)        uint count=0;   //進(jìn)入外部中斷0的次數(shù)        uchar flag;        uint sumnum1;   //記錄100ms內(nèi)的數(shù)目       /***************************函數(shù)聲明***************************/        void delay();        void display(uint m );        void init();        void init_0();        void init_2();    void _delay_us(uint l)   {        unsigned int i;        for(i=0;i<l;i++)        {        asm("nop");        }   }           /**************************主函數(shù)***********************************/       void main()   {        init();        init_0();        init_2();        while(sumnum<5)        {           PORTD=0XBF;           segdisplay(sumnum1);        }       while(1)       {           segdisplay(sumnum1);       }           }        /*************************掃描數(shù)碼管時(shí)的延時(shí)函數(shù)*********************/        void delay()    {         uchar i,j;         for(i=6;i>0;i--)         for(j=225;j>0;j--);    }        /************************數(shù)碼管顯示函數(shù)*****************************/       void segdisplay( int temp)        {         int seg[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};         int temp1,temp2,temp3,temp4;         temp1=temp/1000;         temp2=(temp/100)%10;         temp3=(temp/10)%10;         temp4=temp%10;         DDRB=0xff;         DDRA|=0x0f;           PORTA=~BIT(3);           PORTB=seg[temp1];           _delay_us(100);           PORTA=~BIT(2);           PORTB=seg[temp2];           _delay_us(100);           PORTA=~BIT(1);           PORTB=seg[temp3];           _delay_us(100);           PORTA=~BIT(0);           PORTB=seg[temp4];           _delay_us(100);       }        /***********************管腳初始化函數(shù)*********************/        void init()    {                      DDRD|=0X40;   //PD4 設(shè)置為輸出             PORTD=0XBF;                DDRA=0XFF;             DDRB=0XFF;             PORTA=0XFF;             PORTB=0XFF;    }        /***********************外部中斷0初始化*********************/        void init_0()    {         MCUCR=0X02;   //INT0為下降沿觸發(fā)         GICR=0X40;   //使能INT0中斷         SREG=0X80;  //使能總中斷    }        /**********************定時(shí)器2初始化***********************/        void init_2()    {         TCCR0=0x03;   // 內(nèi)部時(shí)鐘,64 分頻(8M/64=125KHz)          TCNT0=0x83;   //裝初值           TIMSK=0x01;   // 允許 T/C0溢出中斷中斷      }          /***********************外部中斷0子函數(shù)********************/        #pragma interrupt_handler int0_isr:2        void int0_isr(void)        {             count++;        }        /*********************定時(shí)計(jì)數(shù)器0溢出中斷子函數(shù)*****************/       #pragma interrupt_handler int0_over:10        void int0_over(void)       {           TCNT0=0x83;   //重裝初值            if((time%100) == 0)               sumnum1 = num;           if(time == 1000)           {               sumnum=num;               if(sumnum<10)               {                                      if((flag==1)&&(sumnum<10))                   {                       PORTD=0XFF;                       flag=0;                   }                                      flag++;               }               else                       PORTD=0XBF;               num=0;               time=0;           }           num+=count;           count=0;           ++time;        } 

    標(biāo)簽: C語(yǔ)言

    上傳時(shí)間: 2016-03-09

    上傳用戶:彥 yan

  • bios cmos time read and set

    bios cmos time read and set-use borlandc

    標(biāo)簽: bios cmos time read and set

    上傳時(shí)間: 2017-05-04

    上傳用戶:david10274

  • Complex Orthogonal Space-Time Processing

    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

    標(biāo)簽: Orthogonal Space-Time Processing Complex

    上傳時(shí)間: 2020-05-26

    上傳用戶:shancjb

  • Continuous-Time+Digital+Front-Ends

    The book you’re holding, physically or electronically, is the result of a very interesting, challenging but also rewarding research project. The research was carried out in different contexts and cooperations but it was centered around the following question: how can we make the RF transmitters of our modern com- munication systems (WiFi, GSM, LTE, and so on) more flexible and more efficient at the same time.

    標(biāo)簽: Continuous-Time Front-Ends Digital

    上傳時(shí)間: 2020-05-27

    上傳用戶:shancjb

  • IP,+Ethernet+and+MPLS+Networks+

    This book addresses two aspects of network operation quality; namely, resource management and fault management. Network operation quality is among the functions to be fulfilled in order to offer quality of service, QoS, to the end user. It is characterized by four parameters: – packet loss; – delay; – jitter, or the variation of delay over time; – availability. Resource management employs mechanisms that enable the first three parameters to be guaranteed or optimized. Fault management aims to ensure continuity of service.

    標(biāo)簽: Ethernet Networks MPLS and IP

    上傳時(shí)間: 2020-05-27

    上傳用戶:shancjb

  • Space-Time+Processing

    Driven by the desire to boost the quality of service of wireless systems closer to that afforded by wireline systems, space-time processing for multiple-input multiple-output (MIMO) wireless communications research has drawn remarkable interest in recent years. Excit- ing theoretical advances, complemented by rapid transition of research results to industry products and services, have created a vibrant and growing area that is already established by all counts. This offers a good opportunity to reflect on key developments in the area during the past decade and also outline emerging trends.

    標(biāo)簽: Space-Time Processing

    上傳時(shí)間: 2020-06-01

    上傳用戶:shancjb

  • Space-Time+Processing+for+Wireless+Communications

    In this thesis several asp ects of space-time pro cessing and equalization for wire- less communications are treated. We discuss several di?erent metho ds of improv- ing estimates of space-time channels, such as temp oral parametrization, spatial parametrization, reduced rank channel estimation, b o otstrap channel estimation, and joint estimation of an FIR channel and an AR noise mo del. In wireless commu- nication the signal is often sub ject to intersymb ol interference as well as interfer- ence from other users. 

    標(biāo)簽: Communications Space-Time Processing Wireless for

    上傳時(shí)間: 2020-06-01

    上傳用戶:shancjb

主站蜘蛛池模板: 曲阜市| 博野县| 盐城市| 肥东县| 乌鲁木齐县| 鄂托克前旗| 锡林郭勒盟| 伊春市| 常德市| 徐州市| 宁阳县| 临江市| 友谊县| 沾化县| 沙田区| 田东县| 湄潭县| 桓台县| 罗源县| 北碚区| 隆安县| 乃东县| 安化县| 武穴市| 台中市| 平遥县| 浮梁县| 精河县| 中超| 澳门| 禹城市| 巴彦淖尔市| 五寨县| 宝应县| 密山市| 富源县| 闸北区| 灵武市| 诏安县| 成都市| 武乡县|