-
chouyang
说明: 汉莫斯利抽样,适合二维和高维抽样,好用。。。。。。。(Hamsley sampling, suitable for two-dimensional and high-dimensional sampling)
- 2020-06-17 11:16:36下载
- 积分:1
-
自助友情链接系统
1、实现自动链接页面PR值检测、Alexa世界排名检测。
2、实现无人职守,24小时即时完成链接交换
3、自主管理、添加、删除、推...
自助友情链接系统
1、实现自动链接页面PR值检测、Alexa世界排名检测。
2、实现无人职守,24小时即时完成链接交换
3、自主管理、添加、删除、推荐等级等管理动作。
4、使用ASP.NET 2.0核心,安全高效!
5、标签模版化页面设置,你可以随意修改自己喜欢的风格!-self-Links a system for automatic link pages PR detection, detection Alexa ranking in the world. 2, unattended, 24 hours instead of three link exchange, self-management, add, delete, recommended management actions, such as grading. 4, the use of ASP.NET 2.0 core, safe and efficient! 5, labeling template set of pages, you can be amended at their favorite style!
- 2023-08-29 00:05:03下载
- 积分:1
-
客户端优化.jar
说明: 优化客户端MOD,可以减少卡顿,增加用户体验(Optimizing client MOD can reduce Carton and increase user experience)
- 2020-06-25 11:40:01下载
- 积分:1
-
CommonHelper
说明: eneity helper,get value get type
- 2019-11-09 09:22:12下载
- 积分:1
-
LCLtwolevel1
Three phase inverter in PSCAD with and without LCL filter
- 2019-06-11 01:16:38下载
- 积分:1
-
S7-300400自整定PIDFB58源程序
说明: simenst plc FB58 autotune pid come from 300PLC library function ,SCL source code and C sourec code and PDF document
- 2019-06-13 08:31:34下载
- 积分:1
-
M8激光雷达动目标跟踪仿真
模拟八线激光雷达产生点云数据,实现目标聚类,并对聚类的目标进行跟踪。(Simulated eight line lidar generates point cloud data, achieves target clustering, and tracks the clustering targets.)
- 2020-07-26 22:18:41下载
- 积分:1
-
分支限界法实现01背包问题源代码
通过分支限界算法实现经典0/1背包问题,并得出最优化解(branch and bound algorithm)
- 2020-06-16 02:20:06下载
- 积分:1
-
pointcloud viewer
点云查看器,实现点云数据(.ply格式)的导入和导出、清除当前点云数据、显示每个点的法向、根据每个点法向对应的颜色值,赋予这个点颜色、对当前窗口截屏。(Point cloud viewer, to realize the import and export of point cloud data (.Ply format), to clear the current point cloud data, to display the normal of each point, to give the corresponding color values according to each point method, to give this point color and to screen the current window.)
- 2018-08-07 18:02:55下载
- 积分:1
-
Java自定义鼠标光标
super("自定义光标"); //调用父类构造函数
int[] cursor={Cursor.DEFAULT_CURSOR,Cursor.HAND_CURSOR,Cursor.MOVE_CURSOR,Cursor.N_RESIZE_CURSOR,Cursor.W_RESIZE_CURSOR,Cursor.WAIT_CURSOR,Cursor.TEXT_CURSOR}; //预定义光标数组
Container container=getContentPane(); //得到容器
container.setLayout(new FlowLayout()); //设置容器布局管理器
for (int i=0;i JTextArea jta=new JTextArea(3,6); //实例化一个文本框对象
jta.setCursor(Cursor.getPredefinedCursor(cursor[i])); //设置文本框的光标
container.add(jta); //增加组件到容器上
}
Toolkit toolkit=Toolkit.getDefaultToolkit(); //得到默认的ToolKit对象
Image image=toolkit.getImage("cursor.gif"); //得到图像
Cursor customCursor=toolkit.createCustomCursor(image,new Point(6,6),"MyCursor"); //实例化自定义光标对象
JTextArea jta=new JTextArea(3,6); //实例化文本框
jta.setCursor(customCursor); //设置文本框光标
container.add(jta); //增加组件
setSize(300,160); //设置窗口大小
setVisible(true); //窗口可视
- 2022-03-06 15:35:47下载
- 积分:1