虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

an-introduction-to-<b>Rfid</b>-technolog

  • color constancy

    color science; Provide a systematic introduction to the human vision system, color image formation, color reproduction, and color space.

    标签: color science

    上传时间: 2016-05-21

    上传用户:wisewater

  • 离散实验 一个包的传递 用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

    上传用户:梁雪文以

  • 机器人操作的数学导论

    机器人操作的数学导论 原书名:A Mathematical Introduction To Robotic Manipula-tion 原著由美国CRC出版社于1994年出版。是关于机器人操作理论的一本专著。作者:[美]理查德.摩雷 [中]李泽湘 [美]夏恩卡.萨思特里 译者:徐卫良 钱瑞明 本书在综合大量的技术文献资料基础上,结合作者从事的研究工作,从数学角度系统地论述了机器人操作的运动学、动力学、控制及运动规划。本书内容反映了近年来机器人领域的主要研究成果。本书共九章,包括绪论、刚体运动、机器人运动学、机器人动力学及控制、多指手运动学、机器人手的动力学及控制、机器人系统的非完整约束、非完整运动规划和机器人操作的研究展望。第二章至第八章含有丰富的实例,并附有小结和大量的习题。本书可作为有关专业研究生的教材,也可供从事机器、自动控制等领域工作的科研和工程技术人员参考。

    标签: 机器人 操作

    上传时间: 2016-11-14

    上传用户:风尘寻真

  • 道理特分解法

    #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

  • 80x86 Assembly Language

    Introduction to 80x86 Assembly Language and Computer Architecture_Richard Detmer_Jones and Bartlett Publishers_2001

    标签: Introduction Architecture Assembly Computer Language 80x86 and to

    上传时间: 2019-04-03

    上传用户:zsx097

  • Communication+Systems+Simulation

    The genesis for this book was my involvement with the development of the SystemView (now SystemVue) simulation program at Elanix, Inc. Over several years of development, technical support, and seminars, several issues kept recur- ring. One common question was, “How do you simulate (such and such)?” The sec- ond set of issues was based on modern communication systems, and why particular developers did what they did. This book is an attempt to gather these issues into a single comprehensive source.

    标签: Communication Simulation Systems

    上传时间: 2020-05-26

    上传用户:shancjb

  • Introduction to RF Power Amplifier Design

    Radio frequency (RF) power amplifiers are used in everyday life for many applica- tions including cellular phones, magnetic resonance imaging, semiconductor wafer processing for chip manufacturing, etc. Therefore, the design and performance of RF amplifiers carry great importance for the proper functionality of these devices. Furthermore, several industrial and military applications require low-profile yet high-powered and efficient power amplifiers. 

    标签: Introduction Amplifier Design Power to RF

    上传时间: 2020-05-27

    上传用户:shancjb

  • Introduction+to+3G+Mobile+Communications

    The third generation (3G) mobile communication system is the next big thing in the world of mobile telecommunications. The first generation included analog mobile phones [e.g., Total Access Communications Systems (TACS), Nordic Mobile Telephone (NMT), and Advanced Mobile Phone Service (AMPS)], and the second generation (2G) included digital mobile phones [e.g., global system for mobile communications (GSM), personal digital cellular (PDC), and digital AMPS (D-AMPS)]. The 3G will bring digital multimedia handsets with high data transmission rates, capable of providing much more than basic voice calls.

    标签: Communications Introduction Mobile 3G to

    上传时间: 2020-05-27

    上传用户:shancjb

  • LTE, WiMAX and WLAN

    For nearly a hundred years telecommunications provided mainly voice services and very low speed data (telegraph and telex). With the advent of the Internet, several data services became mainstream in telecommunications; to the point that voice is becoming an accessory to IP-centric data networks. Today, high-speed data services are already part of our daily lives at work and at home (web surfing, e-mail, virtual private networks, VoIP, virtual meetings, chats...). The demand for high-speed data services will grow even more with the increasing number of people telecommuting.

    标签: WiMAX WLAN LTE and

    上传时间: 2020-05-27

    上传用户:shancjb

  • MIMO-OFDM Wireless Communications with MATLAB

    MIMO-OFDM is a key technology for next-generation cellular communications (3GPP-LTE, Mobile WiMAX, IMT-Advanced) as well as wireless LAN (IEEE 802.11a, IEEE 802.11n), wireless PAN (MB-OFDM), and broadcasting (DAB, DVB, DMB). This book provides a comprehensive introduction to the basic theory and practice of wireless channel modeling, OFDM, and MIMO, with MATLAB ? programs to simulate the underlying techniques on MIMO-OFDMsystems.Thisbookisprimarilydesignedforengineersandresearcherswhoare interested in learning various MIMO-OFDM techniques and applying them to wireless communications.

    标签: Communications MIMO-OFDM Wireless MATLAB with

    上传时间: 2020-05-28

    上传用户:shancjb