-
IPSO
说明: 利用粒子群算法对分布式电源的出力成本进行优化(Using particle swarm optimization algorithm to optimize the output cost of distributed generation)
- 2021-04-12 09:21:44下载
- 积分:1
-
C++日志操作类
用C++简单封装的一个写日志的类,方便于跟踪程序,查找问题。
采用C++代码,适用多字节项目,使用简单方便。
在头文件中定义了一些实用宏,如定义了写日志的宏,要向关闭写日志的功能,只需将这样的宏定义为空即可。
头文件部分代码如下:
class CSimpleLog
{
public:
CSimpleLog(char *path);
~CSimpleLog();
bool writelog(char *pmsg);
bool writelogx(char *format,...);
static bool write(char *path,char *info);
static bool writex(char * path,char * info,...);
private:
//DWORD time;
std::string last_msg;
FILE *file; //日志文件
int msg_dup_count;
bool isopen;
};
#ifndef THIS_WRITELOG
#define THIS_WRITELOG(s) pThis->m_log.writelog(s)
#endif
#ifndef WRITELOG
#define WRITELOG(s) m_log.writelog(s)
#endif
#ifndef THIS_WRITELOG_
#define THIS_WRITELOG_(s) pThis->m_log.writelog(s);
#endif
#ifndef WRITELOG_
#define W
- 2022-02-09 22:03:10下载
- 积分:1
-
3.key-control-LED
本实验是关于CC2530的源码,讲的是如何用按键控制LED灯的亮与灭(This experiment is about the CC2530 source tells of how keys to control LED lights on and off light)
- 2016-06-17 14:45:31下载
- 积分:1
-
mpu6050
mpu6050驱动代码,加上液晶屏,啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊(MPU 6050 driver code)
- 2020-06-18 23:20:01下载
- 积分:1
-
booksystem_A5
说明: 图书馆管理系统,能进
图书管理系统软件
图书管理系统软件
行图书馆管理系统能实测国民经济和企业的各种运行情况;利用过去的数据预测未来;从企业全局出发辅助企业进行管理决策;利用信息控制企业的行为;帮助企业实现其规划目标。
图书馆管理系统合运用了管理科学,系统科学,运筹学,统计学,计算机科学等学科的知识。可以通俗的简化的描述图书馆管理系统的三要素:系统的观点、数学的方法以及计算机的应用。
图书馆管理系统概念结构主要由四大部分组成即信息源、信息处理器、信息用户、信息管理者组成。(Library Management System
Library Management System Software
Library Management System Software
The library management system can measure the national economy and the operation of enterprises; use past data to predict the future; assist enterprises in management decision-making from the overall situation of enterprises; use information to control the behavior of enterprises; help enterprises achieve their planning objectives.
Library management system combines management science, system science, operations research, statistics, computer science and other disciplines. It can describe the three elements of library management system in a simple way: the viewpoint of system, the method of mathematics and the application of computer.
The conceptual structure of library management system mainly consists of four parts: information source, information processor, information user and information manager.)
- 2019-02-25 12:13:35下载
- 积分:1
-
c#语言实现宿舍信息管理系统,包含多种信息管理
c#实现宿舍信息管理系统,使用MySQL数据库,可以实现多种信息的管理,界面美观,具有参考意义
- 2022-03-02 22:38:27下载
- 积分:1
-
PostProgress
数控五轴速度后置处理源程序,实现速度后置处理(post progress)
- 2021-03-16 13:19:21下载
- 积分:1
-
junzhilvbonmd
MATLAB对数字信号进行均值滤波,尤其是对数字图像(MATLAB for digital signals mean filter, especially for digital images)
- 2014-02-22 18:43:06下载
- 积分:1
-
HEART-RATE-ALGORITHM
EASi Line Assembly Technology HeartRate Give-away C Source Code
- 2016-03-16 05:03:29下载
- 积分:1
-
贪吃蛇
这是以前写的C++版贪吃蛇游戏,也是我学C++时的课程设计题目。通过这个游戏的开发,使我对编程有了更大的兴趣,也对自己逐渐有了信心。
贪吃蛇游戏的设计思路如下:
1)用二维数组来存储显示面板,即有蛇的地方用1表示,没有的地方用0表示,最后据此来绘制图。
2)用时间函数来控制小蛇的移动速度,如每个1秒或500ms等,可以用此来设置等级。
3)贪吃蛇所有的轨迹都是其蛇头走过的轨迹,所以只要记录蛇头的位置,其后的节点都跟随他。
4)用二维数组来记录蛇的所有节点。
- 2022-03-25 04:23:49下载
- 积分:1