-
book
说明: asp+excel农村农家书屋图书在线检索系统 v201904(ASP + excel online retrieval system for rural bookstores v201904)
- 2019-04-24 20:59:24下载
- 积分:1
-
533-004-01-1014
说明: 以上是一款扫描仪的测量程序,此程序安装数模3D编写。使用PCDMIS软件可离线模拟测量路径。直观了解测量过程。(Above is a scanner measurement program, which installs digital and analog 3D programming. PCDMIS software can be used to simulate the measurement path offline. Visual understanding of the measurement process.)
- 2020-06-18 12:20:01下载
- 积分:1
-
C#使用LINQ筛选动态数组中是string类型的元素
C#创建动态数组,筛选指定类型的元素,使用LINQ筛选动态数组中是string类型的元素。核心代码如下:
ArrayList arrList = new ArrayList(); //创建动态数组
arrList.Add(1);//添加动态数组元素
arrList.Add(2);
arrList.Add("A");
arrList.Add(3);
arrList.Add("b");
//使用LINQ筛选动态数组中是string类型的元素
var query = from item in arrList.OfType()
select item;
label1.Text = "是字符串类型的有:";//显示string类型的元素
foreach (var item in query)
{
label1.Text += item + " , ";
}
- 2022-01-24 17:23:38下载
- 积分:1
-
Android输入法手势识别例子代码
Android输入法手势识别例子代码,android.gesture这个类在api-4(SDK1.6)才开始支持的!默认存到SD卡中,所以别忘记在AndroidMainfest.xml加上SD卡读写权限!测试时请您在紧凑的时间内用两笔划来完成一个手势!
Himi提示:手势超过9个我做了删除所有手势的操作,为了界面整洁一些!输入法手势练习~(*^__^*)~ 嘻嘻!操作介绍:(画手势我设置必须画两笔划才行哦~)。
添加手势:先EditText中输入名称,然后在屏幕上画出手势!
匹配手势:在EditText输入"himi",然后输入手势即可!
这里抱怨一下,因为这里总是异常,今天仔细看了才发现不是没写权限,而是我虽然在AndroidMainfest.xml中写了权限,但是写错了位置..哭死!
- 2022-02-21 11:02:15下载
- 积分:1
-
1
说明: 设计双通道线性相位或低延迟PR滤波器组。(Design the two-channel linear-phase or low-delay PR filter banks. Give the filter
coefficients of the lowpass and highpass analysis filters, and plot their frequency
responses, amplitude distortion and aliasing distortion.)
- 2019-04-22 20:21:52下载
- 积分:1
-
adaboost
说明: 利用boost集成BP强分类器,适合初学者使用(Use boost integrated strong classifier, it is suitable for beginners to use)
- 2019-04-25 23:26:57下载
- 积分:1
-
SQLite数据库的一些操作方法
基于C#的数据库SQLite的一些读取和写入的操作方法。包含数据库操作语句。(Some reading and writing methods of the database SQLite based on C#. The database operation statement is included.)
- 2018-01-05 16:52:10下载
- 积分:1
-
yuzhi
对采集的图像或者振动信号进行软硬阈值处理,进而达到降噪的效果(The soft and hard thresholds of the collected images or vibration signals are processed to achieve the effect of noise reduction.)
- 2018-07-07 11:11:43下载
- 积分:1
-
A screen video software, the software can be used to process computer video
一个屏幕录像软件,用该软件可以对电脑操作过程录像-A screen video software, the software can be used to process computer video
- 2022-02-03 14:20:44下载
- 积分:1
-
C#最简单的加、减、乘、除计算例子
C#最简单的加、减、乘、除计算例子,最基础的数字运算在C#中的实现方法,这只是一个例子,可能比较简单哦,但是反映出了一系列的执行过程,进行其它的数学运算时,只需修改对应的计算方法即可。
- 2022-04-22 03:10:38下载
- 积分:1