-
windows中的编程及使用,是一本很不错的电子图书,值得一看
windows中的编程及使用,是一本很不错的电子图书,值得一看-windows in the programming and use, is a very good e-books, worth a visit
- 2023-05-22 10:30:05下载
- 积分:1
-
救护车调度系统仿真
救护车模拟调度系统-ambulance dispatch system simulation
- 2022-03-04 23:42:34下载
- 积分:1
-
function [tout, yout] = rk4 (ypfun. tspan, y0, h)% fixed step four
function [tout, yout] = rk4(ypfun, tspan, y0, h)
%定步长四阶Runge-Kutta法求常微分方程(组)数值解
%[tout,yout] = rk4( ypfun , tspan, y0,h)
% 这里字符串ypfun是用以表示f(t, y)的M文件名,
% tspan=[t0, tfinal]表示自变量初值t0和终值tf
% y0表示初值向量y0,h是步长。
% 输出列向量tout表示节点 (t0 , t1 , … , tn)
% 输出矩阵yout 表示数值解,每一列对应y的一个分量-function [tout, yout] = rk4 (ypfun. tspan, y0, h)% fixed step four-stage Runge- Kutta method for ordinary differential equations (Group) numerical solution% [tout. yout] = rk4 (ypfun, tspan, y0, h)% string ypfun here is used to indicate that f (t, y) M name, tspan% = [t0. tfinal] said variable initial and final t0 tf% y0 said initial vector y0, h is a step. % Output column vector tout said Node (t0, t1, ..., tn)% output matrix yout said numerical solution, each y counterparts out of a weight
- 2023-01-15 01:20:03下载
- 积分:1
-
dsa VCD bus design, the more documents
dsA总线在VCD设计中的应用,比较难得的文档-dsa VCD bus design, the more documents
- 2022-05-13 23:31:23下载
- 积分:1
-
VC调试信息监视器(Visual C++ Custom Debug Monitor)源码,用于程序调试...
VC调试信息监视器(Visual C++ Custom Debug Monitor)源码,用于程序调试-VC monitor debugging information (Visual C++ Custom Debug Monitor) source code for program debugging
- 2022-04-02 09:09:58下载
- 积分:1
-
Project on THIS(The Hindu Information System)
Project on THIS(The Hindu Information System)
- 2022-04-18 23:37:41下载
- 积分:1
-
界面的一些小模仿,可代替系统的界面打开你需要的文件
界面的一些小模仿,可代替系统的界面打开你需要的文件-Interface, some small imitation of the interface system can be a substitute to open the document you need
- 2022-04-19 03:51:16下载
- 积分:1
-
IOCP服务器内存池、线程池性能好
IOCP服务器
内存池、线程池
性能不错-IOCP server memory pool, thread pool performance good
- 2023-08-01 22:55:03下载
- 积分:1
-
在 Python 中的 HTTP 服务器
Web 服务器是处理请求的计算机系统通过 HTTP,基本的网络协议用于分发在万维网上的信息。这个词可以引用到整个系统,或专门软件,接受并监督 HTTP 请求。[] 1最常用的 web 服务器是主机的网站,但有其他用途,如游戏、 数据存储、 运行企业应用程序、 处理电子邮件、 FTP 或其他 web 使用。
- 2022-03-25 01:39:20下载
- 积分:1
-
内存修改
#ifndef _SEARCH_THREAD_H_
#define _SEARCH_THREAD_H_
#define PROCESS_SIZE 1000 // 进程条的最大值
#define THREAD_NUM 1 // 搜索内存线程个数
#define WM_FIND_MEMORY (WM_USER + 1) // 找到搜索数值
#define WM_FIND_PROGRESS (WM_USER + 2) // 搜索进度
#define WM_SEARCH_FINISH (WM_USER + 3) // 搜索线程完成
#define SEARCH_STRING_MAX_LENGTH 255 // 搜索字符串的最大长度
class CModifyMemoryDlg;
// 搜索线程函数
DWORD WINAPI SearchMemory(LPVOID lpParameter);
// 精确搜索
void EquSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi);
// 大于搜索
void GreaterSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi);
// 小于搜索
void
- 2022-06-18 16:10:54下载
- 积分:1