亚洲欧美第一页_禁久久精品乱码_粉嫩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

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

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

    標簽: 輸入 并聯 串聯

    上傳時間: 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;           //程序狀態字寄存器 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低字節 sfr DPH  = 0x83;            //數據指針0高字節 /*------------ 系統管理特殊功能寄存器 -------------*/ 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轉換過程。由于是串行輸入結構,能夠節省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| 香蕉久久夜色精品国产使用方法| 免费亚洲一区二区| 亚洲国产成人久久综合一区| 久久人体大胆视频| 一区在线视频| 蜜臀99久久精品久久久久久软件| 国产在线麻豆精品观看| 久久激五月天综合精品| 国产亚洲午夜| 欧美诱惑福利视频| 黑人巨大精品欧美一区二区小视频| 久久久精品动漫| 亚洲精品美女在线观看| 欧美三级黄美女| 午夜精品三级视频福利| 亚洲欧洲av一区二区| 国产在线观看91精品一区| 男女精品视频| 亚洲一区二区三区色| 国产亚洲精品久久久| 久久国产精品久久精品国产| 亚洲黄网站黄| 国产精品视频免费一区| 久久一本综合频道| 亚洲理伦电影| 国产欧美日韩激情| 欧美国产在线电影| 日韩午夜免费视频| 国产欧美一区二区三区久久| 久久精品卡一| 亚洲影院一区| 亚洲国产成人高清精品| 国产精品视频精品视频| 欧美ab在线视频| 欧美一级二区| 亚洲精选在线观看| 伊人精品成人久久综合软件| 国产精品成人免费视频 | 久久久久久香蕉网| a4yy欧美一区二区三区| 伊人激情综合| 国产亚洲在线| 国产嫩草影院久久久久| 欧美日韩免费一区二区三区视频| 久久香蕉国产线看观看网| 午夜亚洲伦理| 亚洲永久免费视频| 亚洲视频999| 99国产精品99久久久久久| 亚洲国产高清视频| 在线不卡亚洲| 黄色成人在线网址| 韩国v欧美v日本v亚洲v| 国产午夜久久| 国内精品伊人久久久久av影院| 国产精品视频免费一区| 国产精品一区二区在线| 国产精品五月天| 国产乱码精品1区2区3区| 欧美私人网站| 国产精品乱码| 国产午夜精品福利| 国模精品娜娜一二三区| 国产一区二区三区自拍 | 国产亚洲欧美一区| 国产精品区免费视频| 国产精品女主播在线观看| 国产精品美女主播| 欧美一级成年大片在线观看| 性色av香蕉一区二区| 久久精品99国产精品| 久久久久久久久岛国免费| 久久裸体视频| 欧美1区免费| 欧美日韩国产成人精品| 国产精品va在线播放| 国产乱人伦精品一区二区 | 精品电影在线观看| 在线日韩中文字幕| 亚洲观看高清完整版在线观看| 亚洲国产精品精华液2区45| 亚洲国产一区二区三区青草影视| 国产综合久久久久影院| 国产老女人精品毛片久久| 国产在线国偷精品产拍免费yy| 国产九色精品成人porny| 国内精品嫩模av私拍在线观看| 国内不卡一区二区三区| 在线精品国精品国产尤物884a| 亚洲第一综合天堂另类专| 亚洲伦理一区| 亚洲欧美国产日韩中文字幕| 久久久精品五月天| 欧美激情综合| 国产精品日韩二区| 激情亚洲成人| 亚洲一区二区伦理| 久久影视三级福利片| 欧美日韩一二三四五区| 国产一区二区av| 在线观看日产精品| 99re6这里只有精品视频在线观看| 在线亚洲欧美| 久久大逼视频| 欧美日韩精品三区| 韩国精品久久久999| 亚洲美女黄网| 欧美一区视频在线| 亚洲视频免费观看| 欧美高清在线观看| 国产精品自拍在线| av成人国产| 免费不卡在线观看| 国产精品va在线| 国产综合香蕉五月婷在线| 一区二区三区四区国产精品| 六十路精品视频| 国产一区二区三区在线观看视频| 亚洲美女av在线播放| 久久视频在线视频| 国产亚洲一区二区在线观看| 亚洲毛片在线看| 欧美刺激性大交免费视频 | 国产精品色午夜在线观看| 国产精品女主播在线观看| 日韩视频在线永久播放| 美女主播精品视频一二三四| 国内精品久久久久久久97牛牛| 亚洲一区二区三区影院| 欧美日韩国产一区二区| 亚洲第一主播视频| 美女视频黄 久久| 欧美涩涩网站| 一区二区日韩伦理片| 欧美日韩国产在线观看| 亚洲激情欧美| 欧美韩日一区| 亚洲精品123区| 欧美成在线视频| 亚洲区欧美区| 欧美精品色一区二区三区| 亚洲激情成人在线| 欧美日韩不卡合集视频| 99国产欧美久久久精品| 欧美色图一区二区三区| 亚洲欧美成人一区二区三区| 亚洲欧美国产精品桃花| 国产色综合天天综合网| 欧美一区午夜视频在线观看| 国产亚洲一区精品| 久久人人超碰| 亚洲国产一区二区三区a毛片 | 欧美一区二区三区免费在线看 | 在线视频亚洲一区| 国产精品美女久久久久久2018| 亚洲视频免费观看| 国产欧美一级| 美女日韩欧美| 一区二区免费在线播放| 国产日韩精品久久久| 免费h精品视频在线播放| 亚洲国产一区二区a毛片| 欧美激情四色 | 午夜精品久久久久久久99黑人| 国产精品久久久久9999吃药| 亚洲欧美在线免费观看| 国产在线乱码一区二区三区| 久久综合狠狠综合久久激情| 亚洲欧洲日韩女同| 国产精品国产三级国产aⅴ浪潮| 亚洲欧美制服另类日韩| 在线欧美不卡| 欧美三级网址| 久久久久久久久久久一区 | 欧美国产日本高清在线| 亚洲性夜色噜噜噜7777| 韩国v欧美v日本v亚洲v | 久久久久久欧美| 一区二区国产在线观看| 激情成人亚洲| 欧美午夜精品理论片a级大开眼界 欧美午夜精品理论片a级按摩 | 欧美国产在线观看| 亚洲欧美日产图| 亚洲高清自拍| 国产欧美日韩视频一区二区| 欧美成人精品一区二区三区| 亚洲欧美精品在线观看| 亚洲激情自拍| 久久在线91| 亚久久调教视频| 一区二区三区产品免费精品久久75| 国产精品黄页免费高清在线观看| 欧美在线视频免费播放| 亚洲天堂偷拍| 国产精品视频久久| 欧美成人在线网站| 久久人91精品久久久久久不卡| 亚洲制服欧美中文字幕中文字幕|