-
该程序模拟了一个简单的神经元,神经networkreporting在稳定状态…
The program Neuron.c simulates a SIMPLE stable state neural networkreporting on both input and output states and energy levels after eachiteration (namely set up for 8, though usually the network stabilizes afterabout 4). The program demonstrates a very straight-forward method ofprogramming a content-addressable memory and receiving output from that memory.
- 2022-02-01 07:17:54下载
- 积分:1
-
超市扫码结账代码
小型便利店进销存管理系统,该系统配扫码仪一起使用,进货扫码入库,销货扫码销货,制定价格种类,记账,纯客户端应用程序,如计算机出现故障,可备份数据库。
- 2022-03-05 11:44:21下载
- 积分:1
-
关于进度条的美化,可以显出彩色
关于进度条的美化,可以显出彩色-on the progress of the landscaping, can show color
- 2022-01-22 08:48:39下载
- 积分:1
-
网络辅助登陆软件
基于C#的网络辅助登陆软件,能够实现邮箱的辅助登陆功能,可以为您节约大量宝贵的时间,同时也减少你的信息泄露的风险
- 2023-02-07 12:40:04下载
- 积分:1
-
windows下,USB程序,VC编译运行通过,实现了USB的一些基本功能...
windows下,USB程序,VC编译运行通过,实现了USB的一些基本功能-windows, under, USB program, VC compiled to run through to achieve some of the basic features of the USB
- 2022-05-14 13:49:36下载
- 积分:1
-
中国节日对照的源码,还有阴阳历转换,用于51单片机
中国节日对照的源码,还有阴阳历转换,用于51单片机-Chinese festival of the source control, as well as conversion阴阳历for 51 single-chip
- 2022-07-13 23:37:16下载
- 积分:1
-
第二部分测井服务
Part two of the logging service - the viewer
VC6, Win2K, WinXP, Win2003, VS6, MFC, Dev, Intermediate-Part two of the logging service- the viewer
VC6, Win2K, WinXP, Win2003, VS6, MFC, Dev, Intermediate
- 2022-12-31 08:05:04下载
- 积分:1
-
一个动态链接开发实例,可以很好体现动态链接库的作用
一个动态链接开发实例,可以很好体现动态链接库的作用-The development of a dynamic-link example, you can very well reflect the role of a dynamic link library
- 2023-08-28 00:40:03下载
- 积分:1
-
简易的“计算器”源码
简单的计算器源码,毕业设计用
- 2022-04-13 12:37:28下载
- 积分:1
-
win开发用简易日志软件
简易日志显示软件。
支持显示日志、保存日志到文件、udp方式接收日志,支持显示日志网络来源。
本地调用:任何win软件使用如下函数,即可向该软件发送日志数据,日志软件会显示并保存到指定文件中。
int WriteLog(DWORD LogType, char* lpszFormat, ...)
{
static HWND m_hWndLog = NULL;
if (m_hWndLog == NULL)
{
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
char cCurPath[MAX_PATH];
if (GetCurrentDirectoryA(MAX_PATH, cCurPath) > 0)
{
char cExePath[MAX_PATH];
wsprintfA(cExePath, "%sstk1Log.exe", cCurPath);
WinExec(cExePath, SW_SHOW);
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWndLog == NULL)
{
// AfxMessageBox("无法找到Stk1Log.exe用于显示日志!");
return -1;
}
}
}
}
else
{
if (IsWindow(m_hWndLog) == FALSE)
{
m_hWndLog = NULL;
m_hWndLog = ::FindWindowA(NULL, "Stk1Log");
if (m_hWnd
- 2022-07-25 17:36:54下载
- 积分:1