搜索结果

找到约 903 项符合 stRing-include 的查询结果

书籍 Time-Varying Channels

Wireless communications has become a field of enormous scientific and economic interest. Recent success stories include 2G and 3G cellular voice and data services (e.g., GSM and UMTS), wireless local area networks (WiFi/IEEE 802.11x), wireless broadband access (WiMAX/IEEE 802.16x), and digital broad ...
https://www.eeworm.com/dl/522165.html
下载: 1
查看: 67

书籍 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 ma ...
https://www.eeworm.com/dl/522306.html
下载: 1
查看: 83

书籍 Wide Area Monitoring, Protection

Today, electric power transmission systems should face many demanding chal- lenges, which include balancing between reliability, economics, environmental, and other social objectives to optimize the grid assets and satisfy the growing electrical demand. Moreover, the operational environment of trans ...
https://www.eeworm.com/dl/522361.html
下载: 1
查看: 55

书籍 RFID AND SENSOR NETWORKS Architectures

Radio frequency identification (RFID) technology is witnessing a recent explosion of development in both industry and academia. A number of applications include supply chain management, electronic payments, RFID passports, environmental monitoring and control, office access control, intelligent labe ...
https://www.eeworm.com/dl/522388.html
下载: 1
查看: 39

书籍 A_Software-Defined_GPS_and_Galileo_Receiver

Software-defined radios (SDRs) have been around for more than a decade. The first complete Global Positioning System (GPS) implementation was described by Dennis Akos in 1997. Since then several research groups have presented their contributions. We therefore find it timely to publish an up-to-date ...
https://www.eeworm.com/dl/522417.html
下载: 1
查看: 151

源码 二叉树子系统

#include<stdio.h> #define TREEMAX 100 typedef struct  BT { char data; BT *lchild; BT *rchild; }BT; BT *CreateTree(); void Preorder(BT *T); void Postorder(BT *T); void Inorder(BT *T); void Leafnum(BT *T); void Nodenum(BT *T); int TreeDepth(BT *T); int count=0; void main() { BT *T=NULL; char ...
https://www.eeworm.com/dl/522520.html
查看: 93

源码 数组子系统

#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, ...
https://www.eeworm.com/dl/522521.html
下载: 1
查看: 81

源码 C++1000以内的素数

#include<iostream> using namespace std; int s=0;  int prime(int x){ int i,p=1; for(i=2;i<=x/2;i++){ if(x%i==0){ p=0; break; } } if(p!=0){ cout<<x<< " "; s++; } }  int main(){ for (int k=5;k<=100;k++){ prime(k); if(s%5==0) cout<<'\n'; } return 0; } ...
https://www.eeworm.com/dl/522666.html
查看: 59

源码 stdafx.h

--stdafx.h中没有函数库,只是定义了一些环境参数,使得编译出来的程序能在32位的操作系统环境下运行。 windows和mfc的include文件都非常大,即使有一个快速的处理程序,编译程序也要花费相当长的时间来完成工作。由于每个.cpp文件都包含相同的include文件,为每个.cpp文件都重复处理这些文件就显得很傻了。 为避免 ...
https://www.eeworm.com/dl/742638.html
下载: 2
查看: 86

技术资料 STM32F407VGT6精确脉冲控制步进电机源码

STM32F407VGT6精确脉冲控制步进电机源码,采用STM32F407VGT6芯片,抛弃单脉冲输出方式,直接使用普通PWM输出方式精确输出脉冲个数,每个脉冲都可以改变频率和占空比。PWM+中断,简单粗暴。#include "sys.h"#include "delay.h"#include "pwm1.h"#include "pwm2.h"#include "pwm3.h"//注释见pwm1.c文件extern int count2;int m ...
https://www.eeworm.com/dl/744709.html
下载: 4
查看: 2418