-
FIR
用C++实现窗函数的设计,采用的是海明窗为例子(Using C++ to achieve the design of window function, Hamming window is used as an example)
- 2009-04-21 11:06:37下载
- 积分:1
-
dspchengxu
DSP程序,针对有源电力滤波器系统的处理例子,对设计开发APF的人员是个不错的例程,例子比较齐全。(DSP program for the treatment of active power filter system is an example of the design and development of APF personnel is a good routine , relatively complete examples .
)
- 2014-02-16 20:19:28下载
- 积分:1
-
小波+神经网络
说明: 本文档为小波降噪与神经网络算法的代码程序,基于matlab(Wavelet and neural network algorithm program)
- 2019-10-14 10:01:48下载
- 积分:1
-
num2
Visual C++面向对象与可视化程序设计(第2版)——清华大学计算机基础教育课程系列教材(teaching exercise)
- 2012-02-23 13:53:47下载
- 积分:1
-
简单的shell程序
说明: stm32103平台的嵌入式c语言的简单shell实现(Simple shell implementation of embedded C language on STM32103 platform)
- 2019-05-08 08:51:33下载
- 积分:1
-
GET-hw-info--GetSystemInfo
使用GetSystemInfo函数,获取系统硬件基本信息(get system hardware basic info by using GetSystemInfo function.)
- 2014-09-08 21:16:17下载
- 积分:1
-
zxing
打印条码类 通用pdf打印和二维码打印 一维码打印等(Printing Bar Code Generic PDF Printing and Two-Dimensional Code Printing, One-Dimensional Code Printing, etc.)
- 2020-06-17 15:20:12下载
- 积分:1
-
MSMQ
msmq 示例代码,通过C#访问MSMQ服务,来源MSDN改编(msmq sample code through the C# to access MSMQ service sources MSDN adaptation)
- 2013-02-02 11:06:48下载
- 积分:1
-
demo3
基于脉冲反射法定位电缆故障的M128代码,组合采样法对固定波形数据采样提高采样率。(Based on the pulse reflection method to locate cable faults M128 code, fixed combination waveform sampling data sampling to increase the sampling rate.)
- 2013-12-31 23:16:06下载
- 积分:1
-
C# 清除IE地址栏中的历史网址(修改注册表)
C# 清除IE地址栏中的历史网址,也就是历史记录,这些记录都是平时自己输入的,IE会自动保存,本程序会把保存的这些网址信息全部删除了,主要是删除注册表中对应键值下的URL子键:
RegistryKey rkBase = Registry.CurrentUser;//定位到CurrentUser注册表项
//打开指定的注册表项
RegistryKey rkChild = rkBase.OpenSubKey(@"SoftwareMicrosoftInternet ExplorerTypedURLs",true);
String[] strValueNames = rkChild.GetValueNames();//获取所有的历史网址
foreach (string strItem in strValueNames)//遍历获取到的历史网址
{
rkChild.DeleteValue(strItem);//删除遍历到的历史网址
}
- 2022-11-06 13:05:04下载
- 积分:1