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

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

Multiple-Input-Multiple-<b>OUTPUT</b>

  • 凌力爾特電池管理解決方案

    Linear Technology’s high performance battery management ICsenable long battery life and run time, while providing precision charging control, constantstatus monitoring and stringent battery protection. Our proprietary design techniques seamlesslymanage multiple input sources while providing small solution footprints, faster charging and100% standalone operation. Battery and circuit protection features enable improved thermalperformance and high reliability operation.

    標簽: 凌力爾特 電池管理 方案

    上傳時間: 2013-10-13

    上傳用戶:yyq123456789

  • The government of a small but important country has decided that the alphabet needs to be streamline

    The government of a small but important country has decided that the alphabet needs to be streamlined and reordered. Uppercase letters will be eliminated. They will issue a royal decree in the form of a String of B and A characters. The first character in the decree specifies whether a must come ( B )Before b in the new alphabet or ( A )After b . The second character determines the relative placement of b and c , etc. So, for example, "BAA" means that a must come Before b , b must come After c , and c must come After d . Any letters beyond these requirements are to be excluded, so if the decree specifies k comparisons then the new alphabet will contain the first k+1 lowercase letters of the current alphabet. Create a class Alphabet that contains the method choices that takes the decree as input and returns the number of possible new alphabets that conform to the decree. If more than 1,000,000,000 are possible, return -1. Definition

    標簽: government streamline important alphabet

    上傳時間: 2015-06-09

    上傳用戶:weixiao99

  • We have a group of N items (represented by integers from 1 to N), and we know that there is some tot

    We have a group of N items (represented by integers from 1 to N), and we know that there is some total order defined for these items. You may assume that no two elements will be equal (for all a, b: a<b or b<a). However, it is expensive to compare two items. Your task is to make a number of comparisons, and then output the sorted order. The cost of determining if a < b is given by the bth integer of element a of costs (space delimited), which is the same as the ath integer of element b. Naturally, you will be judged on the total cost of the comparisons you make before outputting the sorted order. If your order is incorrect, you will receive a 0. Otherwise, your score will be opt/cost, where opt is the best cost anyone has achieved and cost is the total cost of the comparisons you make (so your score for a test case will be between 0 and 1). Your score for the problem will simply be the sum of your scores for the individual test cases.

    標簽: represented integers group items

    上傳時間: 2016-01-17

    上傳用戶:jeffery

  • 北京大學ACM比賽題目 Write a program to read four lines of upper case (i.e., all CAPITAL LETTERS) text input

    北京大學ACM比賽題目 Write a program to read four lines of upper case (i.e., all CAPITAL LETTERS) text input (no more than 72 characters per line) from the input file and print a vertical histogram that shows how many times each letter (but not blanks, digits, or punctuation) appears in the all-upper-case input. Format your output exactly as shown.

    標簽: CAPITAL LETTERS program Write

    上傳時間: 2014-01-17

    上傳用戶:410805624

  • 道理特分解法

    #include "iostream" using namespace std; class Matrix { private: double** A; //矩陣A double *b; //向量b public: int size; Matrix(int ); ~Matrix(); friend double* Dooli(Matrix& ); void Input(); void Disp(); }; Matrix::Matrix(int x) { size=x; //為向量b分配空間并初始化為0 b=new double [x]; for(int j=0;j<x;j++) b[j]=0; //為向量A分配空間并初始化為0 A=new double* [x]; for(int i=0;i<x;i++) A[i]=new double [x]; for(int m=0;m<x;m++) for(int n=0;n<x;n++) A[m][n]=0; } Matrix::~Matrix() { cout<<"正在析構中~~~~"<<endl; delete b; for(int i=0;i<size;i++) delete A[i]; delete A; } void Matrix::Disp() { for(int i=0;i<size;i++) { for(int j=0;j<size;j++) cout<<A[i][j]<<" "; cout<<endl; } } void Matrix::Input() { cout<<"請輸入A:"<<endl; for(int i=0;i<size;i++) for(int j=0;j<size;j++){ cout<<"第"<<i+1<<"行"<<"第"<<j+1<<"列:"<<endl; cin>>A[i][j]; } cout<<"請輸入b:"<<endl; for(int j=0;j<size;j++){ cout<<"第"<<j+1<<"個:"<<endl; cin>>b[j]; } } double* Dooli(Matrix& A) { double *Xn=new double [A.size]; Matrix L(A.size),U(A.size); //分別求得U,L的第一行與第一列 for(int i=0;i<A.size;i++) U.A[0][i]=A.A[0][i]; for(int j=1;j<A.size;j++) L.A[j][0]=A.A[j][0]/U.A[0][0]; //分別求得U,L的第r行,第r列 double temp1=0,temp2=0; for(int r=1;r<A.size;r++){ //U for(int i=r;i<A.size;i++){ for(int k=0;k<r-1;k++) temp1=temp1+L.A[r][k]*U.A[k][i]; U.A[r][i]=A.A[r][i]-temp1; } //L for(int i=r+1;i<A.size;i++){ for(int k=0;k<r-1;k++) temp2=temp2+L.A[i][k]*U.A[k][r]; L.A[i][r]=(A.A[i][r]-temp2)/U.A[r][r]; } } cout<<"計算U得:"<<endl; U.Disp(); cout<<"計算L的:"<<endl; L.Disp(); double *Y=new double [A.size]; Y[0]=A.b[0]; for(int i=1;i<A.size;i++ ){ double temp3=0; for(int k=0;k<i-1;k++) temp3=temp3+L.A[i][k]*Y[k]; Y[i]=A.b[i]-temp3; } Xn[A.size-1]=Y[A.size-1]/U.A[A.size-1][A.size-1]; for(int i=A.size-1;i>=0;i--){ double temp4=0; for(int k=i+1;k<A.size;k++) temp4=temp4+U.A[i][k]*Xn[k]; Xn[i]=(Y[i]-temp4)/U.A[i][i]; } return Xn; } int main() { Matrix B(4); B.Input(); double *X; X=Dooli(B); cout<<"~~~~解得:"<<endl; for(int i=0;i<B.size;i++) cout<<"X["<<i<<"]:"<<X[i]<<" "; cout<<endl<<"呵呵呵呵呵"; return 0; } 

    標簽: 道理特分解法

    上傳時間: 2018-05-20

    上傳用戶:Aa123456789

  • 輸入并聯(lián)輸出串聯(lián)組合變換器控制策略的研究.rar

    近些年來,隨著電力電子技術的發(fā)展,電力電子系統(tǒng)集成受到越來越多的關注,其中標準化模塊的串并聯(lián)技術成為研究熱點之一。輸入并聯(lián)輸出串聯(lián)型(Input-Parallel and Output-Series,IPOS)組合變換器適用于大功率高輸出電壓的場合。 要保證IPOS組合變換器正常工作,必須保證其各模塊的輸出電壓均衡。本文首先揭示了IPOS組合變換器中每個模塊輸入電流均分和輸出電壓均分之間的關系,在此基礎上提出一種輸出均壓控制方案,該方案對系統(tǒng)輸出電壓調節(jié)沒有影響。選擇移相控制全橋(Full-Bridge,FB)變換器作為基本模塊,對n個全橋模塊組成的IPOS組合變換器建立小信號數學模型,推導出采用輸出均壓控制方案的IPOS-FB系統(tǒng)的數學模型,該模型證明各模塊輸出均壓閉環(huán)不影響系統(tǒng)輸出電壓閉環(huán)的調節(jié),給出了模塊輸出均壓閉環(huán)和系統(tǒng)輸出電壓閉環(huán)的補償網絡參數設計。對于IPOS組合變換器,采用交錯控制,由于電流紋波抵消效應,輸入濾波電容容量可大大減小;由于電壓紋波抵消作用,在相同的系統(tǒng)輸出電壓紋波下,各模塊的輸出濾波電容可大大減小,由此可以提高變換器的功率密度。 根據所提出的輸出均壓控制策略,在實驗室研制了一臺由兩個1kW全橋模塊組成的IPOS-FB原理樣機,每個模塊輸入電壓為270V,輸出電壓為180V。并進行了仿真和實驗驗證,結果均表明本控制方案是正確有效的。

    標簽: 輸入 并聯(lián) 串聯(lián)

    上傳時間: 2013-06-17

    上傳用戶:cwyd0822

  • 隔離電源設計手冊

    Abstract: This document details the Oceanside (MAXREFDES9#) subsystem reference design, a 3.3V to 15V input,±15V (±12V) output, isolated power supply. The Oceanside design includes a high-efficiency step-up controller, a36V H-bridge transformer driver for isolated supplies, a wide input range, and adjustable output low-dropout linearregulator (LDO). Test results and hardware files are included.  

    標簽: 隔離電源 設計手冊

    上傳時間: 2013-10-12

    上傳用戶:jinyao

  • DN465 超低功耗升壓轉換器

      Industrial remote monitoring systems and keep-alivecircuits spend most of their time in standby mode. Manyof these systems also depend on battery power, so powersupply effi ciency in standby state is very important tomaximize battery life. The LT®8410/-1 high effi ciencyboost converter is ideal for these systems, requiringonly 8.5μA of quiescent current in standby mode. Thedevice integrates high value (12.4M/0.4M) output feedbackresistors, signifi cantly reducing input current whenthe output is in regulation with no load. Other featuresinclude an integrated 40V switch and Schottky diode,output disconnect with current limit, built in soft-start,overvoltage protection and a wide input range, all in atiny 8-pin 2mm × 2mm DFN package.

    標簽: 465 DN 超低功耗 升壓轉換器

    上傳時間: 2013-11-23

    上傳用戶:新手無憂

  • 80C51特殊功能寄存器地址表

    /*--------- 8051內核特殊功能寄存器 -------------*/ sfr ACC = 0xE0;             //累加器 sfr B = 0xF0;  //B 寄存器 sfr PSW    = 0xD0;           //程序狀態(tài)字寄存器 sbit CY    = PSW^7;       //進位標志位 sbit AC    = PSW^6;        //輔助進位標志位 sbit F0    = PSW^5;        //用戶標志位0 sbit RS1   = PSW^4;        //工作寄存器組選擇控制位 sbit RS0   = PSW^3;        //工作寄存器組選擇控制位 sbit OV    = PSW^2;        //溢出標志位 sbit F1    = PSW^1;        //用戶標志位1 sbit P     = PSW^0;        //奇偶標志位 sfr SP    = 0x81;            //堆棧指針寄存器 sfr DPL  = 0x82;            //數據指針0低字節(jié) sfr DPH  = 0x83;            //數據指針0高字節(jié) /*------------ 系統(tǒng)管理特殊功能寄存器 -------------*/ sfr PCON  = 0x87;           //電源控制寄存器 sfr AUXR = 0x8E;              //輔助寄存器 sfr AUXR1 = 0xA2;             //輔助寄存器1 sfr WAKE_CLKO = 0x8F;        //時鐘輸出和喚醒控制寄存器 sfr CLK_DIV  = 0x97;          //時鐘分頻控制寄存器 sfr BUS_SPEED = 0xA1;        //總線速度控制寄存器 /*----------- 中斷控制特殊功能寄存器 --------------*/ sfr IE     = 0xA8;           //中斷允許寄存器 sbit EA    = IE^7;  //總中斷允許位  sbit ELVD  = IE^6;           //低電壓檢測中斷控制位 8051

    標簽: 80C51 特殊功能寄存器 地址

    上傳時間: 2013-10-30

    上傳用戶:yxgi5

  • TLC2543 中文資料

    TLC2543是TI公司的12位串行模數轉換器,使用開關電容逐次逼近技術完成A/D轉換過程。由于是串行輸入結構,能夠節(jié)省51系列單片機I/O資源;且價格適中,分辨率較高,因此在儀器儀表中有較為廣泛的應用。 TLC2543的特點 (1)12位分辯率A/D轉換器; (2)在工作溫度范圍內10μs轉換時間; (3)11個模擬輸入通道; (4)3路內置自測試方式; (5)采樣率為66kbps; (6)線性誤差±1LSBmax; (7)有轉換結束輸出EOC; (8)具有單、雙極性輸出; (9)可編程的MSB或LSB前導; (10)可編程輸出數據長度。 TLC2543的引腳排列及說明    TLC2543有兩種封裝形式:DB、DW或N封裝以及FN封裝,這兩種封裝的引腳排列如圖1,引腳說明見表1 TLC2543電路圖和程序欣賞 #include<reg52.h> #include<intrins.h> #define uchar unsigned char #define uint unsigned int sbit clock=P1^0; sbit d_in=P1^1; sbit d_out=P1^2; sbit _cs=P1^3; uchar a1,b1,c1,d1; float sum,sum1; double  sum_final1; double  sum_final; uchar duan[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f}; uchar wei[]={0xf7,0xfb,0xfd,0xfe};  void delay(unsigned char b)   //50us {           unsigned char a;           for(;b>0;b--)                     for(a=22;a>0;a--); }  void display(uchar a,uchar b,uchar c,uchar d) {    P0=duan[a]|0x80;    P2=wei[0];    delay(5);    P2=0xff;    P0=duan[b];    P2=wei[1];    delay(5);   P2=0xff;   P0=duan[c];   P2=wei[2];   delay(5);   P2=0xff;   P0=duan[d];   P2=wei[3];   delay(5);   P2=0xff;   } uint read(uchar port) {   uchar  i,al=0,ah=0;   unsigned long ad;   clock=0;   _cs=0;   port<<=4;   for(i=0;i<4;i++)  {    d_in=port&0x80;    clock=1;    clock=0;    port<<=1;  }   d_in=0;   for(i=0;i<8;i++)  {    clock=1;    clock=0;  }   _cs=1;   delay(5);   _cs=0;   for(i=0;i<4;i++)  {    clock=1;    ah<<=1;    if(d_out)ah|=0x01;    clock=0; }   for(i=0;i<8;i++)  {    clock=1;    al<<=1;    if(d_out) al|=0x01;    clock=0;  }   _cs=1;   ad=(uint)ah;   ad<<=8;   ad|=al;   return(ad); }  void main()  {   uchar j;   sum=0;sum1=0;   sum_final=0;   sum_final1=0;    while(1)  {              for(j=0;j<128;j++)          {             sum1+=read(1);             display(a1,b1,c1,d1);           }            sum=sum1/128;            sum1=0;            sum_final1=(sum/4095)*5;            sum_final=sum_final1*1000;            a1=(int)sum_final/1000;            b1=(int)sum_final%1000/100;            c1=(int)sum_final%1000%100/10;            d1=(int)sum_final%10;            display(a1,b1,c1,d1);           }         } 

    標簽: 2543 TLC

    上傳時間: 2013-11-19

    上傳用戶:shen1230

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
洋洋av久久久久久久一区| 午夜精品电影| 国产小视频国产精品| 午夜精品在线观看| 国产精品一区二区久久| 久久精品亚洲一区| 亚洲精品综合久久中文字幕| 国产欧美69| 欧美日韩激情网| 久久久久久香蕉网| 久久精品动漫| 亚洲男人的天堂在线aⅴ视频| 尤物99国产成人精品视频| 国产午夜亚洲精品不卡| 欧美日韩精品一区| 欧美xxx成人| 美国成人毛片| 久久av老司机精品网站导航| 一区二区欧美国产| 亚洲天堂成人在线观看| 亚洲国产精品久久久久秋霞不卡| 国产美女一区| 欧美区一区二区三区| 久久精品成人一区二区三区| 99在线精品视频| 一区二区91| 中日韩视频在线观看| 宅男噜噜噜66一区二区66| 日韩视频中文字幕| 日韩图片一区| 亚洲午夜精品福利| 亚洲欧美日韩精品久久久| 亚洲淫性视频| 久久精品亚洲| 久久蜜桃精品| 久久一区二区精品| 欧美日韩精品久久| 欧美视频免费在线| 国产日韩专区| 国产一区导航| 国一区二区在线观看| 最新日韩中文字幕| 亚洲剧情一区二区| 亚洲天堂av在线免费观看| 亚洲欧美日韩国产一区二区| 亚洲欧美精品中文字幕在线| 在线亚洲电影| 小嫩嫩精品导航| 欧美国产91| 欧美三级日本三级少妇99| 欧美日韩国产高清视频| 国产精品日韩一区二区| 国产偷国产偷精品高清尤物| 欧美精品日本| 国产精品毛片大码女人| 国产欧美日韩在线| 亚洲人成人一区二区三区| 一区二区三区四区精品| 香蕉国产精品偷在线观看不卡| 亚洲国产日韩一区| 99国产精品视频免费观看一公开 | 99国产精品视频免费观看一公开| 亚洲一区二区综合| 久久青草欧美一区二区三区| 欧美成人一区二区三区片免费| 国产精品成人久久久久| 国产一区二区欧美日韩| 亚洲国产精品成人综合| 亚洲天堂成人在线视频| 久久国产精品亚洲va麻豆| 欧美高清视频在线观看| 国产精品日韩在线一区| 激情六月婷婷久久| 亚洲欧美日韩国产| 男女精品视频| 国产精品亚洲综合久久| 亚洲国产裸拍裸体视频在线观看乱了中文 | 亚洲午夜电影| 欧美成人精品一区二区| 老牛影视一区二区三区| 欧美色区777第一页| 亚洲国产精品久久久久秋霞不卡 | 91久久久精品| 久久久国产精品一区二区三区| 欧美激情免费在线| 国产一区二区日韩精品| 亚洲欧美日本日韩| 欧美精品二区| 伊人久久久大香线蕉综合直播| 午夜欧美大尺度福利影院在线看 | 国产精品欧美一区喷水| 亚洲国产mv| 欧美亚洲免费在线| 国产精品日本| 亚洲一区二区成人在线观看| 免费亚洲婷婷| 亚洲精品免费在线播放| 久久婷婷蜜乳一本欲蜜臀| 久久露脸国产精品| 午夜电影亚洲| 一本一本久久a久久精品牛牛影视| 久久精品日产第一区二区| 国产综合欧美在线看| 亚洲综合社区| 国产精品xxx在线观看www| 在线一区免费观看| 欧美人与禽性xxxxx杂性| 一区二区91| 欧美日韩三级| 久久综合网络一区二区| 一区免费观看| 久久婷婷国产综合精品青草| 国模私拍视频一区| 国产主播一区二区三区四区| 在线观看精品| 欧美精品v日韩精品v韩国精品v| 尤物99国产成人精品视频| 久久国产精品电影| 在线观看免费视频综合| 狼狼综合久久久久综合网| 红桃视频成人| 欧美久久久久久久久| 夜夜精品视频| 免费成人毛片| 亚洲精品一品区二品区三品区| 欧美成人一区二区三区| 亚洲一区二区三区激情| 国产精品视频成人| 欧美一区二区三区四区在线观看地址 | 亚洲一区网站| 久久综合色影院| 亚洲高清久久网| 老色鬼久久亚洲一区二区| 日韩视频专区| 国产精品久在线观看| 久久一区国产| 99av国产精品欲麻豆| 欧美视频一区二区三区在线观看 | 久久综合伊人77777蜜臀| 激情六月婷婷综合| 免费日韩精品中文字幕视频在线| 一区二区三区.www| 国产无遮挡一区二区三区毛片日本| 亚洲永久字幕| 亚洲国产精品电影在线观看| 欧美日韩国产精品专区| 久久综合国产精品| 99视频精品全部免费在线| 国产精品午夜久久| 欧美激情一区二区三区不卡| 亚洲综合日本| 在线日本欧美| 国产午夜精品一区二区三区欧美 | 亚洲成在人线av| 国产精品视频精品| 免费成人性网站| 国产一区二区三区丝袜| 国产精品极品美女粉嫩高清在线| 欧美一区二区三区的| 亚洲一二三四久久| 伊人激情综合| 国产精品蜜臀在线观看| 老色鬼久久亚洲一区二区| 亚洲影音先锋| 亚洲欧洲一区二区在线观看| 国产婷婷一区二区| 国产精品高潮呻吟| 欧美激情一二区| 免费成人激情视频| 久久精品国产视频| 狠狠干成人综合网| 国产日本欧美一区二区三区| 欧美激情日韩| 欧美—级高清免费播放| 久久久久国内| 亚洲欧美日本伦理| 亚洲欧美成人| 制服诱惑一区二区| 亚洲视频综合在线| 亚洲免费福利视频| 亚洲激情自拍| 日韩香蕉视频| 亚洲国产日韩在线| 亚洲人成久久| 91久久精品国产| 影音先锋亚洲电影| 亚洲国产精品日韩| 精品动漫一区二区| 欧美日韩a区| 女仆av观看一区| 老牛嫩草一区二区三区日本 | 欧美电影在线观看完整版| 久久婷婷人人澡人人喊人人爽 | 欧美日韩在线一区二区| 可以看av的网站久久看| 另类天堂视频在线观看| 久久综合图片| 久久精品国产99国产精品澳门| 卡一卡二国产精品| 卡一卡二国产精品|