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

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

Plat<b>FOR</b>m

  • 微電腦型數學演算式雙輸出隔離傳送器

    特點(FEATURES) 精確度0.1%滿刻度 (Accuracy 0.1%F.S.) 可作各式數學演算式功能如:A+B/A-B/AxB/A/B/A&B(Hi or Lo)/|A| (Math functioA+B/A-B/AxB/A/B/A&B(Hi&Lo)/|A|/etc.....) 16 BIT 類比輸出功能(16 bit DAC isolating analog output function) 輸入/輸出1/輸出2絕緣耐壓2仟伏特/1分鐘(Dielectric strength 2KVac/1min. (input/output1/output2/power)) 寬范圍交直流兩用電源設計(Wide input range for auxiliary power) 尺寸小,穩定性高(Dimension small and High stability)

    標簽: 微電腦 數學演算 輸出 隔離傳送器

    上傳時間: 2013-11-24

    上傳用戶:541657925

  • 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

  • AVR單片機數碼管秒表顯示

    #include<iom16v.h> #include<macros.h> #define uint unsigned int #define uchar unsigned char uint a,b,c,d=0; void delay(c) { for for(a=0;a<c;a++) for(b=0;b<12;b++); }; uchar tab[]={ 0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,

    標簽: AVR 單片機 數碼管

    上傳時間: 2013-10-21

    上傳用戶:13788529953

  • RSA算法 :首先, 找出三個數, p, q, r, 其中 p, q 是兩個相異的質數, r 是與 (p-1)(q-1) 互質的數...... p, q, r 這三個數便是 person_key

    RSA算法 :首先, 找出三個數, p, q, r, 其中 p, q 是兩個相異的質數, r 是與 (p-1)(q-1) 互質的數...... p, q, r 這三個數便是 person_key,接著, 找出 m, 使得 r^m == 1 mod (p-1)(q-1)..... 這個 m 一定存在, 因為 r 與 (p-1)(q-1) 互質, 用輾轉相除法就可以得到了..... 再來, 計算 n = pq....... m, n 這兩個數便是 public_key ,編碼過程是, 若資料為 a, 將其看成是一個大整數, 假設 a < n.... 如果 a >= n 的話, 就將 a 表成 s 進位 (s

    標簽: person_key RSA 算法

    上傳時間: 2013-12-14

    上傳用戶:zhuyibin

  • 數字運算

    數字運算,判斷一個數是否接近素數 A Niven number is a number such that the sum of its digits divides itself. For example, 111 is a Niven number because the sum of its digits is 3, which divides 111. We can also specify a number in another base b, and a number in base b is a Niven number if the sum of its digits divides its value. Given b (2 <= b <= 10) and a number in base b, determine whether it is a Niven number or not. Input Each line of input contains the base b, followed by a string of digits representing a positive integer in that base. There are no leading zeroes. The input is terminated by a line consisting of 0 alone. Output For each case, print "yes" on a line if the given number is a Niven number, and "no" otherwise. Sample Input 10 111 2 110 10 123 6 1000 8 2314 0 Sample Output yes yes no yes no

    標簽: 數字 運算

    上傳時間: 2015-05-21

    上傳用戶:daguda

  • 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

  • MATLAB 6_5 輔助優化計算與設計 1、文件命名說明 a)文件夾“第1章”中的文件對應書中第1章的例程

    MATLAB 6_5 輔助優化計算與設計 1、文件命名說明 a)文件夾“第1章”中的文件對應書中第1章的例程,其他以此類推; b) 文件名exampleX1_X2.m:對應例程X1_X2 例如:example2_1表示例程2_1. 2、注意 為了方便起見,書中的每一個例程存為一個文件;而有些例程中將其調用的函數文件也放在這個例程文件中,所以讀者在運行光盤中的例程文件時注意這一點,如果是這樣的例程文件應該將其調用的函數文件分離出來另存為一個文件。

    標簽: MATLAB 輔助 優化計算

    上傳時間: 2015-08-05

    上傳用戶:王小奇

  • 上下文無關文法(Context-Free Grammar, CFG)是一個4元組G=(V, T, S, P)

    上下文無關文法(Context-Free Grammar, CFG)是一個4元組G=(V, T, S, P),其中,V和T是不相交的有限集,S∈V,P是一組有限的產生式規則集,形如A→α,其中A∈V,且α∈(V∪T)*。V的元素稱為非終結符,T的元素稱為終結符,S是一個特殊的非終結符,稱為文法開始符。 設G=(V, T, S, P)是一個CFG,則G產生的語言是所有可由G產生的字符串組成的集合,即L(G)={x∈T* | Sx}。一個語言L是上下文無關語言(Context-Free Language, CFL),當且僅當存在一個CFG G,使得L=L(G)。 *⇒ 例如,設文法G:S→AB A→aA|a B→bB|b 則L(G)={a^nb^m | n,m>=1} 其中非終結符都是大寫字母,開始符都是S,終結符都是小寫字母。

    標簽: Context-Free Grammar CFG

    上傳時間: 2013-12-10

    上傳用戶:gaojiao1999

  • 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

  • The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical)

    The XML Toolbox converts MATLAB data types (such as double, char, struct, complex, sparse, logical) of any level of nesting to XML format and vice versa. For example, >> project.name = MyProject >> project.id = 1234 >> project.param.a = 3.1415 >> project.param.b = 42 becomes with str=xml_format(project, off ) "<project> <name>MyProject</name> <id>1234</id> <param> <a>3.1415</a> <b>42</b> </param> </project>" On the other hand, if an XML string XStr is given, this can be converted easily to a MATLAB data type or structure V with the command V=xml_parse(XStr).

    標簽: converts Toolbox complex logical

    上傳時間: 2016-02-12

    上傳用戶:a673761058

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久人人97超碰精品888| 一区二区三区高清在线观看| 亚洲精品欧美一区二区三区| 亚洲三级影院| 国产精品成人aaaaa网站| 欧美一二区视频| 一区二区日韩伦理片| 一区二区三区在线观看国产| 欧美精品首页| 欧美伦理a级免费电影| 欧美精品自拍偷拍动漫精品| 欧美母乳在线| 久久躁狠狠躁夜夜爽| 精品不卡一区二区三区| …久久精品99久久香蕉国产| 影音先锋在线一区| 国产曰批免费观看久久久| 影音先锋日韩精品| 亚洲国产欧美精品| 一区二区日本视频| 午夜亚洲一区| 久久麻豆一区二区| 欧美国产日韩一区二区在线观看| 激情六月婷婷综合| 国产精品一区2区| 国产精品视频免费观看| 国产精品中文在线| 国产一区二区按摩在线观看| 亚洲国产精品久久91精品| 亚洲品质自拍| 亚洲主播在线播放| 欧美一区二区三区视频免费| 噜噜噜噜噜久久久久久91| 欧美噜噜久久久xxx| 国产精品视频成人| 亚洲福利视频一区二区| 中文精品在线| 久久精品一区二区三区不卡| 国产日韩欧美91| 亚洲精品一区二区三区四区高清| 免费欧美网站| 亚洲美女视频网| 欧美色精品天天在线观看视频 | 亚洲综合不卡| 国产欧美日韩精品在线| 久久精品天堂| 亚洲国产欧美久久| 欧美日韩国产欧美日美国产精品| 亚洲欧洲一区二区三区在线观看| 欧美激情免费观看| 亚洲伊人一本大道中文字幕| 国产精品视频久久一区| 久久九九精品99国产精品| 在线观看91精品国产入口| 亚洲国产精品999| 亚洲精品1区| 久久久久久色| 国产精品日韩久久久久| 亚洲国产高清一区二区三区| 午夜免费电影一区在线观看| 欧美激情视频网站| 国产一区二区三区电影在线观看| 99视频+国产日韩欧美| 久久这里有精品15一区二区三区 | 蜜月aⅴ免费一区二区三区| 91久久精品国产91性色tv| 欧美一级黄色网| 欧美激情影音先锋| 国产自产在线视频一区| 亚洲欧美大片| 欧美色视频一区| 在线精品观看| 午夜精品偷拍| 国产精品激情电影| 日韩亚洲欧美成人一区| 久久一区二区三区超碰国产精品| 欧美丝袜一区二区| 极品av少妇一区二区| 欧美一区二区免费观在线| 欧美日韩精品一区二区三区| 欧美精品成人在线| 久久精品国产一区二区三区| 中日韩视频在线观看| 亚洲精品视频在线观看免费| 国内精品久久久久久久影视蜜臀| 欧美了一区在线观看| 久久久久久久综合狠狠综合| 香蕉久久精品日日躁夜夜躁| 一本色道久久综合狠狠躁篇的优点 | 国内一区二区三区在线视频| 欧美激情国产日韩| 欧美一区二区三区四区视频| av不卡在线| 在线成人免费观看| 国产欧美日韩精品a在线观看| 欧美国产精品久久| 亚洲二区在线| 亚洲男人的天堂在线| 国产精品青草综合久久久久99| 99视频在线观看一区三区| 久久中文精品| 一区二区三区自拍| 久久精品国产99| 影音先锋日韩有码| 欧美激情第三页| 中国av一区| 国产精品一区免费在线观看| 欧美一区永久视频免费观看| 国内精品美女av在线播放| 国产精品毛片在线| 亚洲欧美日韩成人高清在线一区| 欧美视频观看一区| 小黄鸭精品密入口导航| 国产一区二区三区在线观看视频| 久久久久久久尹人综合网亚洲| 好看的日韩视频| 欧美国产日韩亚洲一区| aa级大片欧美三级| 国产毛片精品国产一区二区三区| 久久久久91| 亚洲欧洲精品一区二区三区不卡 | 免费不卡在线观看| 美女脱光内衣内裤视频久久网站| 六月婷婷一区| 欧美手机在线| 国产麻豆视频精品| 亚洲国产精品999| 一二美女精品欧洲| 欧美一区二区黄色| 女仆av观看一区| 欧美日韩亚洲不卡| 国产日韩精品一区二区三区在线| 国产自产v一区二区三区c| 亚洲日韩视频| 欧美一区成人| 欧美人与禽猛交乱配视频| 亚洲午夜电影在线观看| 国产午夜精品一区二区三区视频| 欧美~级网站不卡| 欧美一区二区大片| 中文日韩在线| 亚洲人永久免费| 国产专区精品视频| 国产精品乱码一区二三区小蝌蚪| 女女同性女同一区二区三区91| 性色av一区二区三区在线观看| 亚洲激情成人网| 国产一区二区丝袜高跟鞋图片| 欧美日韩精品免费在线观看视频| 久久亚洲精品一区二区| 欧美日韩亚洲91| 免费欧美日韩国产三级电影| 欧美亚洲综合在线| 一区二区欧美在线观看| 亚洲人成人一区二区在线观看| 国产日韩欧美精品在线| 欧美揉bbbbb揉bbbbb| 欧美成人国产一区二区| 久久国产精品久久国产精品| 国产精品99久久久久久久女警 | 国产一区二区三区四区五区美女| 欧美激情一区在线观看| 久久久女女女女999久久| 日韩视频亚洲视频| 久久国产精品久久久| 国产精品女人网站| 亚洲欧洲日本国产| 欧美成人四级电影| 亚洲第一精品久久忘忧草社区| 欧美一级午夜免费电影| 国产精品―色哟哟| 亚洲欧美日韩另类| 国产精品久久久久久户外露出 | 黄色av日韩| 性久久久久久久久久久久| 亚洲小视频在线观看| 欧美日韩久久精品| 亚洲美女啪啪| 亚洲视频图片小说| 亚洲黄一区二区三区| 国产精品久久99| 香港成人在线视频| 国产欧美精品久久| 欧美日韩国产成人在线91| 亚洲成色999久久网站| 亚洲激情成人| 国产精品日韩在线一区| 久久综合一区二区三区| 久久精品人人做人人综合| 99精品视频免费全部在线| 91久久精品国产| 亚洲乱码国产乱码精品精可以看| 国产乱肥老妇国产一区二 | 国产女主播一区二区| 亚洲精品乱码久久久久久日本蜜臀| 久久综合久久久久88| 欧美美女bbbb| 国产日韩成人精品| 亚洲精品一区二区三区婷婷月| 亚洲国产欧美一区二区三区久久|