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

BASE-v

  • Dynamic+Channel+Acquisition

    Multiuser multiple-input-multiple-output (MU- MIMO) systems are known to be hindered by dimensionality loss due to channel state information (CSI) acquisition overhead. In this paper, we investigate user-scheduling in MU-MIMO systems on account of CSI acquisition overhead, where a base station dynamically acquires user channels to avoid choking the system with CSI overhead. 

    标签: Acquisition Dynamic Channel

    上传时间: 2020-05-27

    上传用户:shancjb

  • Green Radio Communication Networks

    Currently, the information and communications technology (ICT) industry sector accounts for about 2–6% of the energy consumption worldwide, and a significant por- tion of this is contributed by the wireless and mobile communications industry. With the proliferation of wireless data applications, wireless technology continues to increase worldwide at an unprecedented growth rate. This has resulted in an increased number of installed base stations and higher demand on power grids and device power usage, causing an increased carbon footprint worldwide.

    标签: Communication Networks Green Radio

    上传时间: 2020-05-27

    上传用户:shancjb

  • Large-scale+Antenna+Systems

    To meet the future demand for huge traffic volume of wireless data service, the research on the fifth generation (5G) mobile communication systems has been undertaken in recent years. It is expected that the spectral and energy efficiencies in 5G mobile communication systems should be ten-fold higher than the ones in the fourth generation (4G) mobile communication systems. Therefore, it is important to further exploit the potential of spatial multiplexing of multiple antennas. In the last twenty years, multiple-input multiple-output (MIMO) antenna techniques have been considered as the key techniques to increase the capacity of wireless communication systems. When a large-scale antenna array (which is also called massive MIMO) is equipped in a base-station, or a large number of distributed antennas (which is also called large-scale distributed MIMO) are deployed, the spectral and energy efficiencies can be further improved by using spatial domain multiple access. This paper provides an overview of massive MIMO and large-scale distributed MIMO systems, including spectral efficiency analysis, channel state information (CSI) acquisition, wireless transmission technology, and resource allocation.

    标签: Large-scale Antenna Systems

    上传时间: 2020-05-27

    上传用户:shancjb

  • Microwave+Mobile+Communications

    Nature is seldom kind. One of the most appealing uses for radio- telephone systems—communication with people on the move—must over- come radio transmission problems so difficult they challenge the imagina- tion. A microwave radio signal transmitted between a fixed base station and a moving vehicle in a typical urban environment exhibits extreme variations in both amplitude and apparent frequency. 

    标签: Communications Microwave Mobile

    上传时间: 2020-05-28

    上传用户:shancjb

  • Mobile+Communications+Engineering

    By definition, the term “mobile-radio communications” describes any radio communication link between two terminals of which one or both are in motion or halted at unspecified locations and of which one may actually be a fixed terminal such as a base station. This definition applies to both mobile-to-mobile and mobile-to-fixed radio communica- tion links. The mobile-to-mobile link could in fact consist of a mobile- to-fixed-to-mobile radio communication link.The term “mobile” applies to land vehicles, ships at sea, aircraft, and communications satellites. In tactical situations, mobile-radio systems may include any or all of these types of mobile terminals.

    标签: Communications Engineering Mobile

    上传时间: 2020-05-30

    上传用户:shancjb

  • Radio Resource Management

    In a cellular communication system, a service area or a geographical region is divided into a number of cells, and each cell is served by an infrastructure element called the base station through a radio interface. Management of radio interface related resources is a critical design component in cellular communications. 

    标签: Management Resource Radio

    上传时间: 2020-06-01

    上传用户:shancjb

  • RestoringConnections_IBM_CPL

    Commoditization is a serious threat to the telecommunications industry. Most CSPs offer similar services at rates designed to win what has become a price war. As a result, many face decreasing margins and difficulty sustaining differentiation based on prices or products alone. On top of commoditization, CSPs also face competition from OTT providers and an increasingly knowledgeable and demanding customer base. With access to growing amounts of data from an ever-increasing number of sources and devices, today’s empowered, savvy consumers know what they want and expect to get it.

    标签: RestoringConnections_IBM_CPL

    上传时间: 2020-06-01

    上传用户:shancjb

  • Stochastic Geometry and Wireless Networks

    A wireless communication network can be viewed as a collection of nodes, located in some domain, which can in turn be transmitters or receivers (depending on the network considered, nodes may be mobile users, base stations in a cellular network, access points of a WiFi mesh etc.). At a given time, several nodes transmit simultaneously, each toward its own receiver. Each transmitter–receiver pair requires its own wireless link. The signal received from the link transmitter may be jammed by the signals received from the other transmitters. Even in the simplest model where the signal power radiated from a point decays in an isotropic way with Euclidean distance, the geometry of the locations of the nodes plays a key role since it determines the signal to interference and noise ratio (SINR) at each receiver and hence the possibility of establishing simultaneously this collection of links at a given bit rate. The interference seen by a receiver is the sum of the signal powers received from all transmitters, except its own transmitter.

    标签: Stochastic Geometry Networks Wireless Volume and II

    上传时间: 2020-06-01

    上传用户:shancjb

  • The+LTE-SAE+Deployment+Handbook

    Long-TermEvolution(LTE)isarguablyoneofthemostimportantstepsinthecurrentphaseof the development of modern mobile communications. It provides a suitable base for enhanced services due to increased data throughput and lower latency figures, and also gives extra impetus to the modernization of telecom architectures. The decision to leave the circuit- switched domainoutofthescope ofLTE/SAEsystem standardization might soundradical but itindicatesthatthetelecomworldisgoingstronglyfortheall-IPconcept----andthedeployment of LTE/SAE is concrete evidence of this global trend.

    标签: Deployment Handbook LTE-SAE The

    上传时间: 2020-06-01

    上传用户:shancjb

  • 数组子系统

    #include <stdio.h> #include <stdlib.h> #define SMAX 100 typedef struct SPNode { int i,j,v; }SPNode; struct sparmatrix { int rows,cols,terms; SPNode data [SMAX]; }; sparmatrix CreateSparmatrix() { sparmatrix A; printf("\n\t\t请输入稀疏矩阵的行数,列数和非零元素个数(用逗号隔开):"); scanf("%d,%d,%d",&A.cols,&A.terms); for(int n=0;n<=A.terms-1;n++) { printf("\n\t\t输入非零元素值(格式:行号,列号,值):"); scanf("%d,%d,%d",&A.data[n].i,&A.data[n].j,&A.data[n].v); } return A; } void ShowSparmatrix(sparmatrix A) { int k; printf("\n\t\t"); for(int x=0;x<=A.rows-1;x++) { for(int y=0;y<=A.cols-1;y++) { k=0; for(int n=0;n<=A.terms-1;n++) { if((A.data[n].i-1==x)&&(A.data[n].j-1==y)) { printf("%8d",A.data[n].v); k=1; } } if(k==0) printf("%8d",k); } printf("\n\t\t"); } } void sumsparmatrix(sparmatrix A) { SPNode *p; p=(SPNode*)malloc(sizeof(SPNode)); p->v=0; int k; k=0; printf("\n\t\t"); for(int x=0;x<=A.rows-1;x++) { for(int y=0;y<=A.cols-1;y++) { for(int n=0;n<=A.terms;n++) { if((A.data[n].i==x)&&(A.data[n].j==y)&&(x==y)) { p->v=p->v+A.data[n].v; k=1; } } } printf("\n\t\t"); } if(k==1) printf("\n\t\t对角线元素的和::%d\n",p->v); else printf("\n\t\t对角线元素的和为::0"); } int main() { int ch=1,choice; struct sparmatrix A; A.terms=0; while(ch) { printf("\n"); printf("\n\t\t      稀疏矩阵的三元组系统       "); printf("\n\t\t*********************************"); printf("\n\t\t      1------------创建          "); printf("\n\t\t      2------------显示          "); printf("\n\t\t      3------------求对角线元素和"); printf("\n\t\t      4------------返回          "); printf("\n\t\t*********************************"); printf("\n\t\t请选择菜单号(0-3):"); scanf("%d",&choice); switch(choice) { case 1: A=CreateSparmatrix(); break; case 2: ShowSparmatrix(A); break; case 3: SumSparmatrix(A); break; default: system("cls"); printf("\n\t\t输入错误!请重新输入!\n"); break; } if (choice==1||choice==2||choice==3) { printf("\n\t\t"); system("pause"); system("cls"); } else system("cls"); } }

    标签: 数组 子系统

    上传时间: 2020-06-11

    上传用户:ccccy