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

User-Agent

  • Practical digital wireless signals

    Wireless communications is rapidly becoming one of the ubiquitous technological underpinnings of modern society (such as electric power, fossil fuels, automobiles, etc.).Fewpeoplethinkaboutthetechnologywithintheirmobilephones,remotecontrols, garage door openers, GPS navigation devices, and so on. They are always at hand and reliably work for the user.

    标签: Practical wireless digital signals

    上传时间: 2020-05-31

    上传用户:shancjb

  • Practical+Guide+to+MIMO

    The purpose of this book is to introduce the concept of the Multiple Input Multiple Output (MIMO) radio channel, which is an intelligent communication method based upon using multiple antennas. The book opens by explaining MIMO in layman’s terms to help stu- dents and people in industry working in related areas become easily familiarised with the concept. Therefore the structure of the book will be carefully arranged to allow a user to progress steadily through the chapters and understand the fundamental and mathematical principles behind MIMO through the visual and explanatory way in which they will be written. It is the intention that several references will also be provided, leading to further reading in this highly researched technology.

    标签: Practical Guide MIMO to

    上传时间: 2020-05-31

    上传用户:shancjb

  • Recent Trends Multiuser MIMO

    This book emphasis on multi-user MIMO communication. It covers a collection of the major topics and issues in multi-user MIMO systems. Recent Trends in Multi-user MIMO Communications provides a tutorial overview of the latest technologies and research keys related to multi-user communication.

    标签: Multiuser Recent Trends MIMO

    上传时间: 2020-06-01

    上传用户:shancjb

  • The+Telecommunications+Handbook

    Changes in telecommunications are impacting all types of user group, which include business users, traveling users, small and home offices, and residential users. The acceptance rate of telecom- munications and information services is accelerating significantly. Voice services needed approximately 50 years to reach a very high teledensity; television needed just 15 years to change the culture and lives of many families; the Internet and its related services have been penetrating and changing business practices and private com- munications over the last 2 to 3 years.

    标签: Telecommunications Handbook The

    上传时间: 2020-06-01

    上传用户:shancjb

  • Coriolis Vibratory Gyroscopes

    Thanks to the advances in micromachining fabrication technologies and significant cost reduction due to mass production, miniature sensors of angular rate, or gyroscopes, found their way into the everyday life of every user of modern gadgets, such as smart phones, tablets or even wristwatches. Often without realising, many of us are carrying in our pockets fully equipped with all necessary sensors complete inertial navigation systems that not so long ago were available only for advanced vehicles in sea, land, air or space. Accelerometers and gyroscopes are found in specifications of any gadget supposed to react to user movements. And one of the most commonly used type of gyroscopes used to developed these systems is Coriolis vibratory gyroscope (CVG).

    标签: Gyroscopes Vibratory Coriolis

    上传时间: 2020-06-06

    上传用户:shancjb

  • Fundamentals_of_Global_Positioning_System1

    The purpose of this book is to present detailed fundamental information on a global positioning system (GPS) receiver. Although GPS receivers are popu- larly used in every-day life, their operation principles cannot be easily found in one book. Most other types of receivers process the input signals to obtain the necessary information easily, such as in amplitude modulation (AM) and frequency modulation (FM) radios. In a GPS receiver the signal is processed to obtain the required information, which in turn is used to calculate the user position. Therefore, at least two areas of discipline, receiver technology and navigation scheme, are employed in a GPS receiver. This book covers both areas.

    标签: Fundamentals_of_Global_Positionin g_System_Receivers

    上传时间: 2020-06-09

    上传用户:shancjb

  • Fundamentals_of_Global_Positioning_System3

    If one examines the current literature on GPS receiver design, most of it is quite a bit above the level of the novice. It is taken for granted that the reader is already at a fairly high level of understanding and proceeds from there. This text will be an attempt to take the reader through the concepts and circuits needed to be able to understand how a GPS receiver works from the antenna to the solution of user position.

    标签: Fundamentals_of_Global_Positionin g_System

    上传时间: 2020-06-09

    上传用户:shancjb

  • GPS+and+Galileo

    Of the various applications that satellites have been used for, one of the most promising is that of global positioning. Made possible by Global Navigation Satellite Systems, global positioning enables any user to know his or her exact position on Earth. Nowadays, the only fully functioning system is the American Global Positioning System (GPS). However, the European system, known as Galileo, is expected to be operative in 2012.

    标签: Galileo GPS and

    上传时间: 2020-06-09

    上传用户:shancjb

  • ees资源

    EES_REFPROP源码,User Instructions for EES_REFPROP

    标签: ees 资源

    上传时间: 2021-08-24

    上传用户:18868103493

  • FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件

    FPGA读写SD卡读取BMP图片通过LCD显示例程实验 Verilog逻辑源码Quartus工程文件+文档说明,FPGA型号Cyclone4E系列中的EP4CE6F17C8,Quartus版本17.1。1 实验简介在前面的实验中我们练习了 SD 卡读写,VGA 视频显示等例程,本实验将 SD 卡里的 BMP 图片读出,写入到外部存储器,再通过 VGA、LCD 等显示。本实验如果通过液晶屏显示,需要有液晶屏模块。2 实验原理在前面的实验中我们在 VGA、LCD 上显示的是彩条,是 FPGA 内部产生的数据,本实验将彩条替换为 SD 内的 BMP 图片数据,但是 SD 卡读取速度远远不能满足显示速度的要求,只能先写入外部高速 RAM,再读出后给视频时序模块显示module top( input                       clk, input                       rst_n, input                       key1, output [5:0]                seg_sel, output [7:0]                seg_data, output                      vga_out_hs,        //vga horizontal synchronization output                      vga_out_vs,        //vga vertical synchronization output[4:0]                 vga_out_r,         //vga red output[5:0]                 vga_out_g,         //vga green output[4:0]                 vga_out_b,         //vga blue output                      sd_ncs,            //SD card chip select (SPI mode) output                      sd_dclk,           //SD card clock output                      sd_mosi,           //SD card controller data output input                       sd_miso,           //SD card controller data input output                      sdram_clk,         //sdram clock output                      sdram_cke,         //sdram clock enable output                      sdram_cs_n,        //sdram chip select output                      sdram_we_n,        //sdram write enable output                      sdram_cas_n,       //sdram column address strobe output                      sdram_ras_n,       //sdram row address strobe output[1:0]                 sdram_dqm,         //sdram data enable output[1:0]                 sdram_ba,          //sdram bank address output[12:0]                sdram_addr,        //sdram address inout[15:0]                 sdram_dq           //sdram data);parameter MEM_DATA_BITS         = 16  ;            //external memory user interface data widthparameter ADDR_BITS             = 24  

    标签: fpga

    上传时间: 2021-10-27

    上传用户: