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

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

Easy-to-<b>Use</b>

  • fundamental of automation. A good book for automatic engineer. the book introduces the materials fro

    fundamental of automation. A good book for automatic engineer. the book introduces the materials from easy to higher level.

    標簽: book fundamental automation introduces

    上傳時間: 2013-12-24

    上傳用戶:1583060504

  • 離散實驗 一個包的傳遞 用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

    上傳用戶:梁雪文以

  • 道理特分解法

    #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

  • Designing Developing and Facilitating Smart Cities

    The concept of “smart city” is often used implying that the reader has a clear and common notion of what it means. However, in the current literature it is very hard to find a precise definition. What is even more interesting, it is not so easy to find a precise definition of what a city is.

    標簽: Facilitating Developing Designing Cities Smart

    上傳時間: 2020-05-25

    上傳用戶:shancjb

  • Essentials+of+Wireless+Mesh+Networking

    Wirelessmeshnetworkingisahotandgrowingtopic,stillinitsinfancyin some ways, whilst already shown to be capable in others. From a military beginning, mesh networks moved to civilian use and are now being deployed worldwide as both local area networks (LANs) and metro- politan area networks (MANs). However, these deployments are still ‘leading edge’ and it is not yet clear what the most enduring applications of mesh will be – particularly as the market moves from early adopters towards widespread take up.

    標簽: Essentials Networking Wireless Mesh of

    上傳時間: 2020-05-27

    上傳用戶:shancjb

  • Sharing+RF+Spectrum

    This book was born from the perception that there is much more to spectrum use and sharing than one sees reflected in publications, whether academic, commercial or political. the former – in good research style – tend towards reductionism and concentrate on specific, detailed aspects. commercial publications tend to empha- size the positive aspects and they tend to put promise above practice. Given the ever increasing pace of technology development and recent successes of new wireless technologies, some pundits predict large-scale spectrum scarcity, potentially lead- ing to economic catastrophe. Although economic theory has a hard time explaining recent events that shook the world economy, the notion of spectrum scarcity is intui- tively acceptable, even if not correct or immediately relevant.

    標簽: Spectrum Sharing RF

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • Short-range+Wireless+Communication

    Developers, manufacturers and marketers of products incorporating short- range radio systems are experts in their fields—security, telemetry, medical care, to name a few. Often they add a wireless interface just to eliminate wires on an existing wired product. They may adapt a wireless subsystem, which is easy to integrate electrically into their system, only to find that the range is far short of what they expected, there are frequent false alarms, or it doesn’t work at all. It is for these adapters of wireless subsystems that this book is primarily intended.

    標簽: Communication Short-range Wireless

    上傳時間: 2020-06-01

    上傳用戶:shancjb

  • ESD+Basics

    This text, ESD Basics: From Semiconductor Manufacturing to Product Use was initiated on the need to produce a text that addresses fundamentals of electrostatic discharge from the manufacturing environment to today’s products. As the manufacturing world evolves, semi- conductor networks scale, and systems are changing, the needs and requirements for reliabi- lity and ESD protection are changing. A text is required that connects basic ESD phenomena to today’s real world environment.

    標簽: Basics ESD

    上傳時間: 2020-06-05

    上傳用戶:shancjb

  • Programming Your Hom

    Welcome to the exciting, empowering world of home automation! If you have ever wanted your home to do more than just protect you against the outside elements and want to interface it to the digital domain, this book will show you how. By demonstrating several easy-to-build projects, you will be able to take the skills you learned from this book and expand upon and apply them toward custom home automation projects of your own design.

    標簽: Programming Your Hom

    上傳時間: 2020-06-06

    上傳用戶:shancjb

  • Cogeneration+and+District+Energy+Systems

    District energy (DE) systems use central heating and/or cooling facilities to provide heating and/or cooling services for communities. The advantages of district energy over conventional heating and cooling include improved efficiency, reliability and safety, reduced environmental impact, and for many situations better economics. DE systems can be particularly beneficial when integrated with cogeneration plants for electricity and heat, i.e., with combined heat and power (CHP) plants. One of the main impediments to increased use of cogeneration-based district energy is a lack of understanding of the behavior of integrated forms of such systems. This book is aimed at providing information on district energy and cogeneration tech- nologies, as well as systems that combine them.

    標簽: Cogeneration District Systems Energy and

    上傳時間: 2020-06-07

    上傳用戶:shancjb

主站蜘蛛池模板: 北票市| 娄底市| 苏尼特右旗| 庐江县| 隆回县| 宁明县| 固始县| 定州市| 芜湖市| 大城县| 伽师县| 庆阳市| 格尔木市| 田林县| 崇礼县| 云龙县| 汤原县| 临泽县| 芦溪县| 三亚市| 海伦市| 鄄城县| 道孚县| 旬阳县| 太仆寺旗| 县级市| 读书| 呼图壁县| 香港 | 永清县| 弋阳县| 资阳市| 申扎县| 东乌| 商河县| 南木林县| 汾西县| 灵宝市| 西青区| 茶陵县| 资中县|