-
Audio_Project
audio project in c5515
- 2019-03-19 23:33:24下载
- 积分:1
-
ADC+ema占空比测量
说明: STM32单片机利用16路AD测量占空比,测量高频信号占空比(High frequency signal to measure duty ratio)
- 2020-06-23 17:20:02下载
- 积分:1
-
This is a small library+ demo that transforms a .NET regular expression into an...
用于.NET正则表达式和XML串之间相互转换的程序源码(包含演示)。源码为.NET 3.5 C# 格式。-This is a small library+ demo that transforms a .NET regular expression into an XML string and back. It helps understanding a long regex that was written by someone else, and allows easy editing. It s is developed in .NET 3.5 C#, sources included.
- 2022-01-25 20:31:04下载
- 积分:1
-
CTConnect
Dialogic CTC 说明CTC编程C_API(Dialogic CTC CTC Programming note C_API)
- 2007-07-09 23:43:18下载
- 积分:1
-
C#获取网页中的URL地址
通过解析网页中的内容,提取网页中的URL地址,供进一步分析。通过正则表达式,分析网页内容。程序是通过C#语言编写的,大家可以进一步扩展,里面不是可执行文件,而是定义的类文件。
- 2022-02-05 06:48:17下载
- 积分:1
-
Fyp-master
说明: 使用bluettoth文件测试蓝牙连接是否正常并在您的计算机上可用,
下载并打开gui文件,该文件将pythongui放在屏幕上并允许使用它。(Use the Bluettoth file to test the bluetooth connection works and is available on your machine ,
download and open the gui file which will loiad the python gui on to your screen and allow for its use.)
- 2019-11-01 12:54:37下载
- 积分:1
-
C++Primer Plus第6版中文版源代码
应用背景C++PrimerPlus第六版课本源代码,和课本同步,嗯注释是英文的(肯定啊),代码和课本上的一样,官网的链接挂了发在这里供各位学习关键技术
示例:
// stack.h -- class definition for the stack ADT
#ifndef STACK_H_
#define STACK_H_
typedef unsigned long Item;
class Stack
{
private:
enum {MAX = 10}; // constant specific to class
Item items[MAX]; // holds stack items
int top; // index for top stack item
public:
Stack();
bool isempty() const;
bool isfull() const;
// push() returns false if stack already is full, true otherwise
bool push(const Item & item); // add item to stack
// pop() returns false if stack already is empty, true otherwise
bool pop(Item & item); // pop top into item
};
#endif
- 2022-03-16 20:51:53下载
- 积分:1
-
FreControlRand
是用蒙特卡洛算法 求解的正弦拟合曲线,
收敛于0.000000001;
还用到了伪随机数。 愿我们共同提高,一起进步!(Monte Carlo algorithm is the sine curve, converges to 0.000000001 also used the pseudo-random number. We would like to improve, with progress!)
- 2009-04-27 11:59:49下载
- 积分:1
-
Intelligent-human-sensing-door
智能人体感应自动门程序,基于51单片机,主要应用于人员流动频繁的场所。(Intelligent human sensing automatic door program, based on 51 single, frequent staff turnover is mainly used in places.)
- 2020-12-01 15:19:27下载
- 积分:1
-
ExcelReadWriter-原始
C# Excel操作类 读取数据 保存数据(C# Excel operation class reads data and saves data)
- 2020-06-20 02:00:02下载
- 积分:1