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

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

automation-and-<b>ROBOTics</b>

  • 離散實驗 一個包的傳遞 用warshall

     實驗源代碼 //Warshall.cpp #include<stdio.h> void warshall(int k,int n) { int i , j, t; int temp[20][20]; for(int a=0;a<k;a++) { printf("請輸入矩陣第%d 行元素:",a); for(int b=0;b<n;b++) { scanf ("%d",&temp[a][b]); } } for(i=0;i<k;i++){ for( j=0;j<k;j++){ if(temp[ j][i]==1) { for(t=0;t<n;t++) { temp[ j][t]=temp[i][t]||temp[ j][t]; } } } } printf("可傳遞閉包關系矩陣是:\n"); for(i=0;i<k;i++) { for( j=0;j<n;j++) { printf("%d", temp[i][ j]); } printf("\n"); } } void main() { printf("利用 Warshall 算法求二元關系的可傳遞閉包\n"); void warshall(int,int); int k , n; printf("請輸入矩陣的行數 i: "); scanf("%d",&k); 四川大學實驗報告 printf("請輸入矩陣的列數 j: "); scanf("%d",&n); warshall(k,n); } 

    標簽: warshall 離散 實驗

    上傳時間: 2016-06-27

    上傳用戶:梁雪文以

  • MCF5223XFS

    Connecting 32-bit controlled applications in the industrial, commercial and consumer markets is fast becoming a necessity rather than an option. Many new applications, such as remote data collection, home automation and networked appliances, require secure, high-performance connectivity at an economical price. Freescale Semiconductor gives design engineers the flexibility to choose the right 32-bit microcontroller from a broad portfolio of ColdFire? embedded controllers.

    標簽: 5223 MCF XFS

    上傳時間: 2017-02-18

    上傳用戶:traff07

  • 道理特分解法

    #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

  • 智能溫室大棚控制系統設計

    近年來反季節種植已成火熱趨勢,溫室大棚的普及十分迅速,而溫室大棚對自動化、智能化的要求也越來越迫切,本系統將溫室大棚的溫濕度、二氧化碳濃度各個方面的檢測,通風、澆灌、溫度、噴灑農藥等各個方面的控制進行綜合系統研究,實現溫室大棚對自動化、智能化的要求。這一系統是基于單片機控制的智能檢測,控制系統包含單片機主控模塊、感應檢測模塊、傳感模塊,顯示、控制模塊等[1]。從而提高溫室大棚的種植效率,減少勞動力,提高利潤等。In recent years,counter-season planting has become a hot trend featuring the rapid popularization of greenhouse and urgent requirement for the automation and intellectualization of greenhouse.This paper offers a comprehensive and systematic study of the monitoring of temperature,humidity and carbon dioxide concentration in the greenhouse and the control of ventilation,irrigation,temperature and pesticide spraying in order to achieve automation and intellectualization in greenhouse.This system is based on the intelligent detection controlled by single chip computer with the control system including the main control module,induction detection module,sensing module,display and control module of single chip computer,which is effective in improving planting efficiency of greenhouse,reducing labor force and increasing profits.

    標簽: 智能溫室大棚 控制系統

    上傳時間: 2022-03-27

    上傳用戶:

  • 基于MSP430F5529單片機綜合實驗裝置的研制

    針對目前MSP430單片機實驗裝置較少、實驗內容少,而且無MSP430高端產品的實驗裝置,研制了基于MSP430F5529單片機的綜合實驗裝置,主要包括MSP430 Launch Pad和母板兩部分。較傳統的單片機實驗裝置增加了模擬電路的設置,設計的實驗能夠利用單片機的所有外設,可進行模塊基礎實驗和綜合實驗兩大類實驗,非常適合自動化和電氣信息類大學生學習使用。Concerning with the lack of experimental equipment and content based on MSP430,and especially,the experimental equipment of MSP430 senior products,an experimental equipment based on MSP430F5529 microcontroller is developed. It mainly consists of two parts: MSP430 Launch Pad and main board. Compared with traditional microcontroller experiment equipment,a few analog circuits were added. The experiment we set up takes advantage of all microcontroller peripherals. Students can do two kinds of experiments: module experiment and complex experiment.Therefore it fits university students in automation and electrical major very well.

    標簽: msp430f5529 單片機

    上傳時間: 2022-04-13

    上傳用戶:

  • 安森美車規級1080P圖像傳感器AR0231手冊

    AR0231AT7C00XUEA0-DRBR(RGB濾光)安森美半導體推出采用突破性減少LED閃爍 (LFM)技術的新的230萬像素CMOS圖像傳感器樣品AR0231AT,為汽車先進駕駛輔助系統(ADAS)應用確立了一個新基準。新器件能捕獲1080p高動態范圍(HDR)視頻,還具備支持汽車安全完整性等級B(ASIL B)的特性。LFM技術(專利申請中)消除交通信號燈和汽車LED照明的高頻LED閃爍,令交通信號閱讀算法能于所有光照條件下工作。AR0231AT具有1/2.7英寸(6.82 mm)光學格式和1928(水平) x 1208(垂直)有源像素陣列。它采用最新的3.0微米背照式(BSI)像素及安森美半導體的DR-Pix?技術,提供雙轉換增益以在所有光照條件下提升性能。它以線性、HDR或LFM模式捕獲圖像,并提供模式間的幀到幀情境切換。 AR0231AT提供達4重曝光的HDR,以出色的噪聲性能捕獲超過120dB的動態范圍。AR0231AT能同步支持多個攝相機,以易于在汽車應用中實現多個傳感器節點,和通過一個簡單的雙線串行接口實現用戶可編程性。它還有多個數據接口,包括MIPI(移動產業處理器接口)、并行和HiSPi(高速串行像素接口)。其它關鍵特性還包括可選自動化或用戶控制的黑電平控制,支持擴頻時鐘輸入和提供多色濾波陣列選擇。封裝和現狀:AR0231AT采用11 mm x 10 mm iBGA-121封裝,現提供工程樣品。工作溫度范圍為-40℃至105℃(環境溫度),將完全通過AEC-Q100認證。

    標簽: 圖像傳感器

    上傳時間: 2022-06-27

    上傳用戶:XuVshu

  • A Simple isochronous transfer. Reads 8051 ports A,B and C, and continuously sends a five byte packet

    A Simple isochronous transfer. Reads 8051 ports A,B and C, and continuously sends a five byte packet over EP8IN:

    標簽: continuously isochronous and transfer

    上傳時間: 2015-02-01

    上傳用戶:ywqaxiwang

  • If we have two individually sorted vectors "a" and "b" but they are not sorted with respect to each

    If we have two individually sorted vectors "a" and "b" but they are not sorted with respect to each other and we want to merge them into vector "c" such that "c" is also a sorted vector. Then c=mergesorted(a,b) can be used.

    標簽: sorted individually respect vectors

    上傳時間: 2015-09-23

    上傳用戶:comua

  • Distributed Median,Alice has an array A, and Bob has an array B. All elements in A and B are distinc

    Distributed Median,Alice has an array A, and Bob has an array B. All elements in A and B are distinct. Alice and Bob are interested in finding the median element of their combined arrays.

    標簽: array B. Distributed has

    上傳時間: 2013-12-25

    上傳用戶:洛木卓

  • design LP,HP,B S digital Butterworth and Chebyshev filter. All array has been specified internally

    design LP,HP,B S digital Butterworth and Chebyshev filter. All array has been specified internally,so user only need to input f1,f2,f3,f4,fs(in hz), alpha1,alpha2(in db) and iband (to specify the type of to design). This program output hk(z)=bk(z)/ak(z),k=1,2,..., ksection and the freq.

    標簽: Butterworth internally Chebyshev specified

    上傳時間: 2015-11-08

    上傳用戶:253189838

亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产日韩欧美高清免费| 91久久精品网| 国产精品人人做人人爽人人添| 国产色产综合产在线视频| 中文亚洲视频在线| 国产伦精品一区二区三区四区免费| 日韩视频免费看| 国产精品免费网站| 亚洲欧美日韩精品久久奇米色影视| 国产精品午夜在线| 欧美一二三区在线观看| 激情五月婷婷综合| 欧美精品一区二区三区视频| 中文在线不卡| 国内精品免费午夜毛片| 欧美日韩第一区日日骚| 久久精品视频亚洲| 亚洲一区二区网站| 夜夜狂射影院欧美极品| 国产精品美女久久久久久久| 久久久久久久综合| 中文无字幕一区二区三区| 国产一本一道久久香蕉| 欧美日韩国产美| 久久久久久久久蜜桃| 99成人在线| 亚洲国产高潮在线观看| 国产欧美日韩视频一区二区| 欧美激情一区二区三区| 久久精品国语| 国产一区二区在线观看免费| 久久久久在线| 午夜精品www| 一本大道av伊人久久综合| 噜噜噜在线观看免费视频日韩| 亚洲美女视频网| 好吊妞**欧美| 国产欧美日韩激情| 国产精品国产三级国产普通话蜜臀 | 欧美+亚洲+精品+三区| 一区二区三区蜜桃网| 玉米视频成人免费看| 国产日韩av在线播放| 欧美日韩中文在线观看| 欧美国产先锋| 欧美国产精品日韩| 美女黄毛**国产精品啪啪 | 美日韩精品视频| 久久久久久有精品国产| 欧美在线欧美在线| 久久岛国电影| 久久琪琪电影院| 蜜臀久久99精品久久久久久9| 久久久福利视频| 久久久综合免费视频| 久久久久久亚洲精品不卡4k岛国| 久久精品国产99| 久久夜色撩人精品| 久热精品在线| 欧美极品一区| 欧美日韩色婷婷| 国产精品av免费在线观看| 欧美日韩亚洲一区二区三区在线观看| 欧美激情在线播放| 欧美日韩精品一区视频 | 欧美色综合天天久久综合精品| 欧美电影专区| 欧美视频精品一区| 国产精品视频一二| 国产亚洲成精品久久| 在线电影国产精品| 亚洲美女诱惑| 亚洲免费一区二区| 久久深夜福利| 欧美视频福利| 国产婷婷97碰碰久久人人蜜臀| 激情欧美丁香| 日韩午夜高潮| 久久精品欧美日韩| 欧美理论片在线观看| 国产日韩欧美在线视频观看| 黑人一区二区三区四区五区| 在线观看日韩www视频免费| 亚洲毛片视频| 久久国产精品一区二区三区| 欧美成人一二三| 国产精品亚洲不卡a| 在线观看的日韩av| 亚洲视频免费在线| 国产网站欧美日韩免费精品在线观看| 国产一区二区三区四区五区美女| 在线观看日韩av| 亚洲视频一区二区在线观看 | 亚洲国产精品精华液网站| 亚洲婷婷在线| 欧美1区2区视频| 国产欧美日韩精品一区| 亚洲精选久久| 久久人人爽人人爽| 国产精品尤物| 日韩写真视频在线观看| 久久精品一区四区| 国产精品国产成人国产三级| 亚洲国产精品va在线观看黑人| a4yy欧美一区二区三区| 久久国产加勒比精品无码| 欧美日韩国产综合网| 在线观看欧美日韩国产| 欧美一区二区三区在线视频| 欧美日韩在线观看视频| 亚洲激情视频在线观看| 久久只有精品| 国产农村妇女精品| 国产综合av| 亚洲永久精品大片| 欧美日韩国产不卡在线看| 亚洲国产精品高清久久久| 久久精品欧洲| 国产美女在线精品免费观看| 中国女人久久久| 欧美男人的天堂| 亚洲免费观看在线观看| 久久综合国产精品| 好吊妞**欧美| 免费在线观看精品| 尤物在线精品| 男男成人高潮片免费网站| 黄色国产精品| 美女91精品| 亚洲国产精品成人精品| 久久久噜噜噜久噜久久| 国内精品久久久久伊人av| 久久久亚洲精品一区二区三区| 国产乱码精品一区二区三区不卡| 亚洲自拍16p| 国产精品视频专区| 香蕉久久一区二区不卡无毒影院 | 亚洲美女中出| 欧美日韩国产区一| 在线午夜精品自拍| 国产精品免费看| 久久综合久久美利坚合众国| 亚洲欧美国产日韩天堂区| 欧美午夜精品久久久久久人妖| 日韩视频在线一区二区| 欧美日韩美女| 亚洲欧美成人一区二区在线电影 | 午夜在线精品偷拍| 国产欧美亚洲精品| 久久久久久久综合狠狠综合| 亚洲福利视频免费观看| 欧美精品999| 亚洲午夜在线| 韩国欧美国产1区| 欧美精品在线观看一区二区| 亚洲少妇中出一区| 国产在线不卡| 欧美日韩国产区| 欧美一区二区视频97| 亚洲欧洲日本国产| 国产精品视频xxx| 久久影院午夜论| 亚洲天天影视| 在线看国产一区| 国产精品久久久久毛片软件 | 老**午夜毛片一区二区三区| 亚洲精品系列| 欧美日韩在线视频一区| 欧美精品久久久久久久| 亚洲一区二区视频| 在线日本成人| 国产精品亚洲аv天堂网| 欧美aaa级| 欧美在线免费看| 欧美精选在线| 午夜精品久久久久久久白皮肤 | 久久av一区| 99pao成人国产永久免费视频| 国产精品丝袜91| 欧美激情五月| 久久综合电影一区| 午夜影院日韩| 中国成人在线视频| 亚洲精品网址在线观看| 国内在线观看一区二区三区| 欧美日韩三区| 欧美成人亚洲成人日韩成人| 久久av在线看| 亚洲一区三区视频在线观看| 亚洲人成艺术| 在线观看成人av| 国产欧美日韩精品在线| 欧美视频日韩视频| 欧美寡妇偷汉性猛交| 久久久久成人精品免费播放动漫| 亚洲一区二区三区欧美| 99视频日韩| 亚洲精品日韩欧美| 亚洲日本理论电影| 亚洲国产一区二区精品专区|