-
k_均值_多维空间聚类
压缩包中包含一个数据文件和一个程序文件。数据文件主要用来作为训练样本用的,为后面的数据分类做依据。程序文件主要包含两个窗体文件和一个聚类判断文件。
- 2022-12-27 16:45:03下载
- 积分:1
-
C# 禁止鼠标左键单击的实现源码
C# 禁止鼠标左键单击,附上例子源码,禁止后将不响应鼠标左键消息,当然也可恢复鼠标左键,直接关闭本程序即可恢复,实现方法也很简单,看如下代码:
private void button1_Click(object sender, EventArgs e)
{//禁止鼠标左键单击
Application.AddMessageFilter(this);
MessageBox.Show("鼠标左键已经被禁止,请用Tab键执行操作!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
private void button2_Click(object sender, EventArgs e)
{//允许鼠标左键单击
Application.RemoveMessageFilter(this);
MessageBox.Show("鼠标左键已经被解禁,可以执行操作!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
public bool PreFilterMessage(ref System.Windows.Forms.Message MySystemMessage)
{//不响应鼠标左键消息
if (MySystemMessage.Msg >= 513 && MySystemMessage.Msg
- 2022-03-09 09:45:43下载
- 积分:1
-
松下fp7plc(通信程序)
打开软件需要下载松下fp7专用软件工具,具体下载可点击https://device.panasonic.cn/ac/c/fasys/plc/software/fpwingr7/index.jsp,主要功能为通过程序实现plc通信
- 2022-05-30 00:47:40下载
- 积分:1
-
CAN
瑞萨关于CAN通信方面最实用,最通俗易懂的资料,非常适合刚接触CAN的开发人员(Renesas CAN communication is the most practical, most user-friendly information is ideal for developers new to the CAN)
- 2012-08-17 23:02:37下载
- 积分:1
-
2011.11.20
matlab制作的小软件各种功能展示。。有镜像的垂直,水平,fft变换等(matlab software produced by a small display of various functions. . A mirror of vertical, horizontal, fft transform)
- 2011-11-19 10:59:44下载
- 积分:1
-
凸包
实现了读入二维数据点,进行凸包计算,得到凸包边界点的结果,输出到文本文件中。(It reads in two-dimensional data points, calculates convex hull, gets the results of convex hull boundary points, and outputs them to text files.)
- 2020-06-23 14:40:02下载
- 积分:1
-
文本进制转换
将数据文件为BIN文件格式转换成TXT文件,并且将其中的二进制数据转换成double型格式的数据。
- 2022-03-21 03:09:10下载
- 积分:1
-
activex_teechart
vs2010之中 active x控件的 teechart使用 (This is a document about how to use active X control of the TeeChart in VS2010)
- 2014-11-24 21:20:28下载
- 积分:1
-
opencamlib-master
一个C++库,用于CNC数控加工之CAM处理。(OpenCAMLib (ocl) is a c++ library for creating toolpaths for cnc-machines
such as mills and lathes.)
- 2016-01-25 16:14:20下载
- 积分:1
-
LedLight
说明: LED数码管驱动开发例程,基于51单片机,包括pc端程序(LED digital tube Driver Development routines, based on 51 MCU, including the pc-procedures)
- 2006-01-12 12:57:52下载
- 积分:1