-
TMS320C54x_4_DQPSK
基于TMS320C54x 实现πP4- DQPSK 调制
信息产业部电子第十研究所(Based on the TMS320C54x implementation πP4-DQPSK modulation 10th Electronics Institute of the Ministry of Information Industry)
- 2009-03-28 19:08:06下载
- 积分:1
-
paint2
画图程序,可以话直线,矩形,圆,椭圆和多边形(Paint program, you can, then straight, rectangular, round, oval and polygon)
- 2008-08-12 16:16:47下载
- 积分:1
-
Pressure_Calculation
说明: EDEM默认压力模型,用于学习API编写(Edem default stress model for learning API writing)
- 2020-04-13 13:38:22下载
- 积分:1
-
sqlite-source-3_6_6_2
说明: sqlite的最新源码
This ZIP archive contains preprocessed C code for the SQLite library as individual source files. It is strongly recommended that the amalgamation above be used instead of this package(sqlite latest source This ZIP archive contains preprocessed C code for the SQLite library as individual source files. It is strongly recommended that the amalgamation above be used instead of this package)
- 2008-11-29 16:13:56下载
- 积分:1
-
清华出版社C语言第一章
#include
int main( )
{
int a,b,sum;
a = 123;
b = 456;
sum = a + b;
printf(”sum is %d
”,sum);
return 0;
}
- 2023-01-29 04:00:03下载
- 积分:1
-
gps
说明: 通过串口读取GPRMC语句,并进行解包处理(read and deal GPRMC from UART)
- 2020-04-20 17:46:12下载
- 积分:1
-
FileServer
基于SYMBIAN的文件服务器,包括文件的管理及信息的存储、设备的管理,连接的管理,会话的管理等。(Symbian-based file server, including file management and information storage, equipment management, connection management, session management.)
- 2008-08-01 10:33:15下载
- 积分:1
-
C#结合数据库生成饼形图表
C#结合数据库生成饼形图表,这种图表是常见的数据统计图表,饼形图、柱状图等使用十分广泛,本程序演示了C#从数据库中读取出数据,然后交给饼形图生成模块,加载数据生成饼形图表。
//清空背景色
g.Clear(Color.White);
Pen pen1 = new Pen(Color.Red);
Brush brush1 = new SolidBrush(Color.PowderBlue);
Brush brush2 = new SolidBrush(Color.Blue);
Brush brush3 = new SolidBrush(Color.Wheat);
Brush brush4 = new SolidBrush(Color.Orange);
Font font1 = new Font("Courier New", 16, FontStyle.Bold);
Font font2 = new Font("Courier New", 8);
g.FillRectangle(brush1, 0, 0, width, height); //绘制背景图
g.DrawString("公司员工年龄比例饼形图", font1, brush2, new Point(80, 20)); //书写标题
int piex = 100, piey = 60, piew = 200, pieh = 200;
//20-25岁员工在圆中分配的角度
float angle1 = Convert.ToSingle((360 / Convert.ToSingle(Sum)) * Convert.ToSingle(man20to25));
//26-30岁员工在圆中分配的角度
float angle2 = Convert.ToSingle((360 / Convert.ToSingle(Sum)) * Convert.ToSingle(man26to30));
//31-40岁员工在圆中分配的角度
float angle3 = Convert.ToSingle((360 / Convert.ToSingle(Sum)) * Convert.ToSingle(man31to40));
g.FillPie(brush2
- 2022-04-12 00:35:45下载
- 积分:1
-
zlgvin
QT编写的上位机界面,适合学习QT框架和周立功CAN卡编程接口(The upper computer interface written by QT is suitable for studying QT frame and Zhou Li Gong CAN card programming interface.)
- 2020-07-28 15:08:39下载
- 积分:1
-
include
1)随机输入平面上n个点的集合;
2)使用分治策略编制计算机程序求出这n个点的极大点。
3)编程实现2维极大点问题的求解,且在程序中体现分治策略。程序能处理任意的n个点。
(1) a collection of n points on a random input plane
2) using divide and conquer strategy computer program to calculate the maximum point of the n point.
3) programming for solving 2 dimensional maximal point problem, and reflect the divide and conquer strategy in the program. Program can handle arbitrary n points.)
- 2015-11-03 15:43:31下载
- 积分:1