-
guzhiyu_FileGuard
过滤驱动,最新的过滤框架,实现透明加解密.file encryption filter driver source code.(Filter driver, the latest filtering framework, the realization of transparent encryption and decryption. File encryption filter driver source code.)
- 2008-03-29 23:17:24下载
- 积分:1
-
duandianxiazai
这是几个断点下载的程序,包括:ftp协议实现多线程断点续传.rar,Site Snagger下载整个站点,使用WInternet API COOL.rar等(This is the breakpoint downloaded several procedures, including : ftp protocol multithreaded HTTP. Rar. Site Snagger download the whole site, WInternet use API COOL.rar etc.)
- 2006-10-25 14:30:59下载
- 积分:1
-
DOSgo
DOS下的人机对弈 围棋程序 可以读sgf文件
简单可用 不错 值得收藏
- 2021-01-15 14:48:46下载
- 积分:1
-
exp_1
For round-off error and numerical stability
- 2011-04-08 09:25:07下载
- 积分:1
-
STM32-7SEG-LED-SCAN
8位数码管动态扫描显示实验(显示不用库函数)
*显示用指针直接访问GPIO端口的输出寄存器,形式GPIOD->ODR
*延时delay_nms(5)时,显示不闪烁
*74HC138 A--P2.2--PE.0 B--P2.3--PE.1 C--P2.4--PE.2
*74HC573 D0~D7---PD[0..7] LE---PE.3
*by 追梦 2011-4-3(8-bit digital dynamic scan showed that the experimental (show no library function)* Display a pointer to directly access GPIO port output register, form GPIOD-> ODR* delay delay_nms (5), the display does not blink* 74HC138 A- P2. 2- PE.0 B- P2.3- PE.1 C- P2.4- PE.2* 74HC573 D0 ~ D7--- PD [0 .. 7] LE--- PE.3* by Dream 2011-4-3)
- 2011-05-20 09:36:18下载
- 积分:1
-
vc++001
VC++ 源代码 文档 共10节 第一节(VC source code files a total of 10 Section I)
- 2007-02-11 23:11:52下载
- 积分:1
-
plot_y_e
matlab中的画图程序,包括了坐标设置,最大范围设置,增加网格,网格间距,曲线颜色粗细,曲线类型。(Matlab drawing program, including the coordinate set, maximum range setting, increasing the grid, the grid spacing, color thick curve, curve type.)
- 2014-09-03 11:05:08下载
- 积分:1
-
na7
Orthogonal Polynomials Approximation
数值分析,计算正交基多项式的系数
(Given a function f and a set of m >0 distinct points . You are supposed to write a function to approximate f by an orthogonal polynomial using the exact function values at the given m points with a weight assigned to each point . The total error must be no larger than a given tolerance.
Format of function
int OPA( double (*f)(double t), int m, double x[], double w[], double c[], double*eps )
where the function pointer double (*f)(double t) defines the function f int m is the number of points double x[] contains points double w[] contains the values of a weight function at the given points x[] double c[] contains the coefficients of the approximation polynomial double*eps is passed into the function as the tolerance for the error, and is supposed to be returned as the value of error. The function OPA is supposed to return the degree of the approximation polynomial.
Note: a constant Max_n is defined so that if the total error is still not small enough when n = Ma)
- 2011-11-27 11:47:21下载
- 积分:1
-
C# 数据库备份还原 实例源码下载
用于操作数据库备份还原的功能,将lib下的 dll文件 拷贝至 debug目录 即可运行 原理:Interop.SQLDMO.dll实现
- 2015-04-14下载
- 积分:1
-
C# 查询订购产品ID为51的客户信息
C# 查询订购产品ID为51的客户信息,需要连接数据库来测试,相关代码分享如下:
//查询订购产品ID为51的客户信息
SqlConnection MyConnection = new SqlConnection(@"Data Source =luobin-PCSQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True");
MyConnection.Open();
DataSet MyDataSet = new DataSet("CustomerOrdersDetails");
SqlDataAdapter MyCustomerAdapter = new SqlDataAdapter("SELECT * FROM Customers", MyConnection);
MyCustomerAdapter.Fill(MyDataSet, "Customers");
DataTable MyTable = new DataTable();
MyCustomerAdapter.Fill(MyTable);
SqlDataAdapter MyOrderAdapter = new SqlDataAdapter("SELECT * FROM Orders", MyConnection);
MyOrderAdapter.Fill(MyDataSet, "Orders");
SqlDataAdapter MyDetailAdapter = new SqlDataAdapter("SELECT * FROM [Order Details]", MyConnection);
MyDetailAdapter.Fill(MyDataSet, "OrderDetails");
MyConnection.Close();
MyDataSet.Relations.Add("CustOrders",MyDataSet.Tables["Customers"].Columns["CustomerID"],MyDataSet.Tables["Orders"].Columns["CustomerID"]).Nested = true;
MyDataSet.Relations.Add(
- 2023-04-28 12:35:03下载
- 积分:1