资源列表
POJ1011sticks
- poj1010sticks源代码,欢迎大家下载
qianxu
- 由于是第一次上传,也不知道行不行好不好。希望大家都给一些建议。-Since this the first time uploads do not know is feasible or not. Hope you gave some suggestions. Thank you
TIME-INT
- 该程序利用了定时器1的周期中断功能,每1ms产生一次中断-procedures for the use of the timer interrupt the cycle of a function, each have an interruption 1ms
rbf
- 用RBF神经网络优化PID控制器,可以直接使用-Optimize PID controller based on RBF neural network
PCF8563
- pcf8563驱动程序,可以顺利的读写芯片,一在实验板上得到验证-the pcf8563 driver can successfully read and write chip, a breadboard proven
tabctrl
- 一个简单的tabctrl控件,包含加载视图功能,实现类似propertypage标签页的功能,而在这个基本版本上,你可以增加更多自己想要的模式,而不用去寻找那些大而全的类,方便自己动手提升理解。-A simple tabctrl controls, includes loading view, to achieve similar propertypage tab function in the basic version, you can add more of their own desir
integrator-n-interpolator
- Integrator and interpolator codes in verilog
segment
- 运动计时器设计 (1)在LED数码管上显示分钟和秒,最长的计时时间为59:59。 (2)自定义清零按键,按下该按键,在液晶显示屏上显示的时间为00:00。 (3)自定义启动/暂停按键,按下该按键,则启动或暂停计时器计时。其功能与实际的计时器的开始/停止按钮功能相同。 -Motion Timer Design (1) shows minutes and seconds on the LED digital tube, the longest time period of 59:59
cal_sunangle
- 利用已知的时间和经纬度计算方位角和太阳高度角-Computes sun azimuth and zenith angles for a given time, date, latitude and longitude
CBAR.C
- Sample program for interfacing Turbo C with Turbo Prolog
BPSK-QPSK
- 分别编写BPSK与QPSK调制解调系统的Matlab仿真程序,要求:发送滤波器与接收滤波器均为根升余弦滚降滤波器;信道噪声为加性高斯白噪声 绘制BPSK与QPSK调制下的误码率与信噪比曲线图,并与理论曲线比较对比-They were written BPSK and QPSK modulation and demodulation system Matlab simulation program requirements: a transmission filter and a recept
Exercises-of-the-first-experiment
- 北京理工大学面向对象程序设计第五次上机习题答案~-Here is the definition of Point: class Point { private: double X, Y public: void SetPoint(double a, double b) } void Point::SetPoint(double a, double b) { X = a Y = b } a)