-
iir
说明: c语言和汇编实现iir滤波器,可在ccs上运行察看(Realization of IIR filter by C language and assembly language)
- 2020-06-30 08:00:01下载
- 积分:1
-
C#生成连续和任意重复的字符串实例
C#调用自定义方法生成字符串实例,生成的这些字符串有两种类型,一种是生成包括N个连续字符的字符串,另一个是生成指定重复字符的字符串,在平时的应用中,有很多卡号和序列号需要生成类似的号码,有兴趣的可参考。
static void Main(string[] args)
{
Program p = new Program();//创建Program对象
p.CreateSString();//调用自定义方法
p.CreateTString();//调用自定义方法
Console.Read();
}
private void CreateSString()
{
//生成包含6个连续字符的字符串
string str = new string(Enumerable.Range(0, 6).Select(i => (char)(i + 65)).ToArray());
Console.WriteLine("包含6个连续字符的字符串:" + str);
}
private void CreateTString()
{
//生成包含3个重复字符串的字符串
string str = string.Join(string.Empty, Enumerable.Repeat("MR", 3).ToArray());
Console.WriteLine("包含3个重复字符串的字符串:" + str);
}
- 2022-07-11 13:58:31下载
- 积分:1
-
小球上升下落
此程序由VS2013为载体平台编写,是小球的上校运动。
- 2022-08-09 02:45:27下载
- 积分:1
-
devcpp
Differential evoluation 非常好的非线性最优化算法,可用于参数识别,图像处理等。(Differential evoluation very good nonlinear optimization algorithm, can be used for parameter identification, image processing and so on.)
- 2008-12-31 03:59:42下载
- 积分:1
-
STM32 DMP读取MPU6050
基于STM32F4通过DMP读取MPU6050的姿态角数据
- 2023-02-17 21:55:04下载
- 积分:1
-
stm32-usart-RS485-RS232
stm32的usart1和usart3配置为串口通信,均用中断实现串口接收。(stm32 usart1 and usart3 configured for serial communication, both with the serial port receive interrupt achieve.)
- 2014-09-05 16:22:08下载
- 积分:1
-
简易聊天室
说明: 实现两台主机互联的简易聊天室,根据远程IP远程端口号,将两台主机连接,两台主机用户可以进行聊天,可以发送数字,字符,汉字,英文字母等。(A simple chat room to realize the interconnection of two hosts. According to the remote IP port number, connect the two hosts. Users of the two hosts can chat and send numbers, characters, Chinese characters, English letters, etc.)
- 2020-05-06 17:22:30下载
- 积分:1
-
Visual_C++GameDevelop
Visual C++游戏开发技术与实例一书配套光盘。包含了冒险屠宰场、入侵者、赛车、网络五子棋、网络台球、对战坦克大战和面包圈7个游戏实例的完整源代码。(Visual C++ Game development technology and examples of a book supporting CD-ROM. Contains adventure slaughterhouse, the invaders, car, network Gobang, network billiards, donut war Tankedaizhan and seven examples of a complete game source code.)
- 2020-06-26 03:40:02下载
- 积分:1
-
deadband_pid.m
带死区的PID算法,在MATLAB语言编写,仿真效果不错。(Dead-zone of the PID algorithm, the MATLAB language, simulation results are good.)
- 2009-12-08 09:51:57下载
- 积分:1
-
ugqualified
用电子表格显示数据库内容这个电子表格做的很漂亮,跟excel是一样的风格,很方便()
- 2018-04-28 20:05:29下载
- 积分:1