-
vc with the development of the huge memory games, beginners or very useful.
用vc++开发的贪吃蛇游戏,初学者还是很有用的。-vc with the development of the huge memory games, beginners or very useful.
- 2022-01-27 20:26:07下载
- 积分:1
-
Forest3DNew
这是3DForest网站的开原程序集,基于CodeBlocks14开发。(This is the original 3DForest site assembly, based on CodeBlocks14 development.)
- 2020-06-20 02:20:02下载
- 积分:1
-
一个用JavaScript写的走迷宫游戏,用键盘上的→←↑↓键进行游戏,走出迷宫。请按照maze.txt中的说明把一部分代码复制到<head><...
一个用JavaScript写的走迷宫游戏,用键盘上的→←↑↓键进行游戏,走出迷宫。请按照maze.txt中的说明把一部分代码复制到之间,另一部分代码复制到之间:-a written using JavaScript Maze games, the keyboard keys for the game, out of the labyrinth. Maze.txt follow the narrative part of the code replication lt; Headgt; Lt;/Headgt; Among the other copy of the code lt; Bodygt; Lt;/Bodygt; Between :
- 2023-08-20 20:15:05下载
- 积分:1
-
nannvshengshibie
本文通过对男性和女性声音的语音特征的研究,发现男女声的基音频率存在较大的差异,并设计了基于基音频率分析的男女声识别系统。男女声识别系统由以下三个模块电路构成:话筒放大器,低通滤波器,半波整流电路,单片机测量控制模块。话筒放大器采用NE5532P音前置芯片,对语音信号进行放大;八阶低通滤波器MAX293完成基音信号的提取;单片机STC12C5410AD实现频率测量和控制输出功能。经仿真与电路实测,男女声的识别效果良好。(In this paper, the voices of male and female voice characteristics of the findings of a study of the fundamental frequency of the sound of men and women there is a big difference, and the design of frequency analysis based on the pitch of the voice recognition system for men and women. Voice Recognition System for men and women from the circuit the following three modules: the microphone amplifier, low-pass filter, half-wave rectifier circuit, single-chip measurement control module. NE5532P sound using the microphone pre-amplifier chip amplification of voice signals eight MAX293-order low-pass filter to complete the extraction of pitch signal STC12C5410AD single-chip realization of the frequency of measurement and control output. By circuit simulation and measurement, the identification of male and female voices well.)
- 2009-04-12 16:23:04下载
- 积分:1
-
nc
说明: 遥感数据提取/分析/获取/arcgis/matlab/(Remote Sensing Data Extraction)
- 2020-06-23 15:40:02下载
- 积分:1
-
time
自宣言型记时器,可以自定义记时方式,标题,时间长度等。(Since the Declaration type chronograph, you can customize chronograph, title, time, length and so on.)
- 2013-09-02 16:43:01下载
- 积分:1
-
MagicFormula5.2
轮胎模型魔术公式,非常完善,可以用于车辆动力学仿真(Tire model magic formula, very perfect, can be used for vehicle dynamics simulation)
- 2020-12-22 16:09:07下载
- 积分:1
-
基于多尺度谱峭度的分接开关振动信号处理
基于多尺度和谱峭度算法对振动信号进行降噪处理,里面有程序说明,有运行结果说明,值得学习一下(Based on the multi-scale and Spectral Kurtosis Algorithm, the vibration signal is de noised and processed. There is a program description, and the result of operation shows that it is worth learning.)
- 2018-06-19 16:25:36下载
- 积分:1
-
shape parameterization mothods
说明: 多学科优化参数化建模MATLAB程序,对翼型进行参数化建模(MATLAB Program for Parametric Modeling of Multidisciplinary Optimization)
- 2021-01-15 00:18:46下载
- 积分:1
-
Visual C# 韩信点兵算法演示源码
韩信点兵是一道古代数学题,内容是:韩信带兵不足百人,三人一行排列多一个,七人一行排列少两个,五人一行排列正好。相关代码:
int a = 0, b = 0, c = 0;//定义变量
for (int i = 1; i < 100; i++)//遍历
{
Math.DivRem(i, 3, out a);//3行一列时取余
Math.DivRem(i, 5, out b);//5行一列时取余
Math.DivRem(i, 7, out c);//7行一列时取余
if (a == 1 && b == 0 && c == 5)//如果3种方式的余数符合要求
{
textBox1.Text = i.ToString();//显示人数
return;
}
- 2022-01-25 14:48:17下载
- 积分:1