-
BPinC
基于c语言的神经网络程序
不错的呀,夸夸下(based on the neural network programming good ah, herself under)
- 2006-06-24 13:53:01下载
- 积分:1
-
bt
说明: 科技创新(7)智能小车控制算法软件模拟实现,根据测量当前小车的位置、速度和预瞄点位置与赛道之间的关系控制小车的速度,舵机大小、档位、油门和刹车情况。(Science and technology innovation (7) intelligent car control algorithm simulation software to realize, according to the current measurement car position, velocity, and the position and the track point tracking the relationship between the speed of the car, steering gear control size, gear, throttle and brake.
)
- 2011-07-17 18:07:23下载
- 积分:1
-
tcip
c语言编写的tcp/ip协议,用于初学者(c language TCP/IP)
- 2012-02-24 11:59:56下载
- 积分:1
-
zernike
说明: 滤波是将信号中特定波段频率滤除的操作,是抑制和防止干扰的一项重要措施,滤波分为经典滤波和现代滤波。(Filtering is the operation of filtering out the specific band frequency of the signal, which is an important measure to suppress and prevent interference. Filtering is divided into classical filtering and modern filtering.)
- 2019-12-20 12:01:53下载
- 积分:1
-
cutelyst-master
跨平台的cpp web framework。用qt开发网页后台应用。(Cross-platform CPP web framework. Develop the background application of web page with qt.)
- 2019-03-09 09:38:14下载
- 积分:1
-
GA
说明: 这是一个关于遗传算法的m文件,不错 o (This is about the genetic algorithm m files, henbucuo o)
- 2012-04-29 21:04:36下载
- 积分:1
-
VisualC++-MATLAB
《VisualC++-MATLAB图像处理与识别实用案例精选》书的源代码,里面各个章节的程序例子都有("VisualC- MATLAB image processing and recognition practical case Showcase" on the source code, inside the various sections of the procedures examples)
- 2007-05-10 19:22:38下载
- 积分:1
-
Win2012WMIiSCSIVhdxManager
在Windows Server 2012下利用WMI实现iISCSI管理Vhdx磁盘,主要包括的方法有创建虚拟磁盘、创建iSCSI Target、格式化虚拟磁盘、删除虚拟磁盘、删除iSCSI Target(In Windows Server using WMI 2012 under the iISCSI Vhdx disk management, mainly includes the methods to create a virtual disk, create a iSCSI Target, format the virtual disk, delete the virtual disk, delete the iSCSI Target)
- 2014-12-10 16:57:55下载
- 积分:1
-
template.cpp
an example c++ source code on how template is used
- 2014-01-01 23:18:40下载
- 积分:1
-
C# 判断是否为数值
C# 判断是否为数值,具体来说就是判断学生年龄是否为数值,private List GetStudent()
{
string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
"SELECT 学生姓名,ISNUMERIC(年龄) FROM tb_Student");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
List P_str = new List();//创建数据集合
foreach (DataRow item in P_dt.Rows)
{
P_str.Add(new Instance() { 姓名=item[0].ToString(),//添加数据项
年龄 = item[1].ToString() ==
"1" ? "数值" : "非数值" });
}
return P_str;//数据集合
}
- 2022-03-19 05:06:24下载
- 积分:1