-
Map coloring problem, using lingo9.0 program
地图着色问题,用lingo9.0程序实现-Map coloring problem, using lingo9.0 program
- 2022-03-19 07:00:27下载
- 积分:1
-
VTC2015-UFMC-FilterOpt
VTC2015-UFMC-FilterOpt
- 2018-01-15 03:02:05下载
- 积分:1
-
一个简单的井字游戏,不是人机对战的,游戏需要两个人参与,在此抛砖引玉,希望有人能给我人机对战的代码。...
一个简单的井字游戏,不是人机对战的,游戏需要两个人参与,在此抛砖引玉,希望有人能给我人机对战的代码。-gridwork a simple game, not the man-machine players, the game requires two people to participate in this suit, hoping that someone can give me man-machine players code.
- 2022-01-28 14:40:49下载
- 积分:1
-
在这里只给出了主要的与系统功能相关的 ASP文件中的VBScript代码。...
在这里只给出了主要的与系统功能相关的 ASP文件中的VBScript代码。-here is the only major system functions associated with the document, the ASP VBScript code.
- 2023-06-14 11:55:03下载
- 积分:1
-
DUET
说明: 介绍了DUET盲源分离方法,可以仅使用两个混合信号分离任何数目的源分离方法。该
方法适用于源信号W-不相交正交的情况。(T the DUET Blind Source Separation method which can separate any number of sources using only two mixtures. The method is valid when sources are W-disjoint orthogonal, that is, when the supports of the windowed Fourier transform of the signals in the mixture are disjoint.)
- 2020-09-22 16:47:51下载
- 积分:1
-
Timoshenko beam in free vibrations
Timoshenko beam in free vibrations 铁木辛柯梁单元自由振动(Timoshenko beam in free vibrations free vibration of Timoshenko beam element)
- 2020-12-18 21:49:10下载
- 积分:1
-
M
说明: 交易当中区块链技术应用,查阅资料借鉴电力资料内容(Application of Block Chain Technology in Transaction and Reference to Electricity Data)
- 2021-04-07 15:39:01下载
- 积分:1
-
五子棋站
五子棋单机版、网络版合一,网络版为单人对战,可同时容纳多组在线-Gobang stand-alone version, the network version of unity, the network version of the Single Battle, which can accommodate multiple-line
- 2022-08-06 05:59:15下载
- 积分:1
-
swishroll
这是瑞士卷数据集,isomap的原始数据集,mat格式,好用(Swiss roll data set in mat , originally used in ISOMAP)
- 2020-09-30 21:57:43下载
- 积分: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