-
第3章 数据的预处理
利用matlab进行数据预处理,m源文件(Using MATLAB for data preprocessing, M source file)
- 2020-10-10 14:37:34下载
- 积分:1
-
DL645-2007协议调试器
支持DL-T2007协议的多功能电能表调试(Debugging of Multifunctional Watt-hour Meter Supporting DL-T2007 Protocol)
- 2020-06-21 06:40:02下载
- 积分:1
-
Flooding
无线传感网flooding协议的matlab仿真代码,参数可根据需要进行修改。(The matlab simulation code of the wireless sensor network flooding protocol, the parameters can be modified as needed.)
- 2020-12-30 15:39:01下载
- 积分:1
-
GF1_Preprocess
说明: 高分一号预处理,辐射定标,几何校正,大气校正(High score No.1 pretreatment, radiometric calibration, geometric correction, atmospheric correction)
- 2019-10-31 19:01:52下载
- 积分:1
-
JSP Source Code Share in this
JSP Source Code Share in this
- 2022-03-12 22:54:06下载
- 积分:1
-
.cpp文件。输入中序表达式,可以计算10以内的整数四则混合运算。思路是用中序转后序,再进行计算。...
.cpp文件。输入中序表达式,可以计算10以内的整数四则混合运算。思路是用中序转后序,再进行计算。-. cpp file. Input sequence expression, can be calculated within 10 4 mixed-integer calculations. Idea is to be used in sequence after sequence, and then calculated.
- 2022-01-24 13:58:25下载
- 积分:1
-
Current-Effects
一个比较好的ppt模板,程序员汇报的时候可以使用(A good ppt templates, programmers can use when reporting)
- 2014-02-07 21:22:38下载
- 积分:1
-
H+CG80CNC×3000
说明: 数控系统控制软件。西门子802D系统控制软件(NC System Control Software.siemens 802D cnc control software)
- 2019-03-13 17:00:01下载
- 积分:1
-
粒子模拟
PIC算法粒子模拟理论与方法,这是在静电场条件下粒子的运动计算公式。(PIC algorithm particle simulation theory and method)
- 2018-10-25 19:35:56下载
- 积分:1
-
Java实现窗体右键菜单
Java实现窗体右键菜单,简约易操作的窗体菜单,这是一个相当易懂的制作实例。
super( "右键弹出菜单" ); //调用父类构造函数
ChangeColorAction action = new ChangeColorAction(); //菜单项事件处理
String[] str = {"Blue","Pink","Yellow","Red","Orange"}; //菜单项名称
ButtonGroup colorGroup=new ButtonGroup(); //实例化按钮组
popupMenu=new JPopupMenu(); //实例化弹出菜单
items=new JRadioButtonMenuItem[5]; //初始化数组
for (int i=0;i items[i]=new JRadioButtonMenuItem(str[i]); //实例化菜单项
popupMenu.add(items[i]); //增加菜单项到菜单上
colorGroup.add(items[i]); //增加菜单项到按钮组
items[i].addActionListener(action); //菜单项事件处理
}
addMouseListener(new MouseAdapter(){ //窗口的鼠标事件处理
public void mousePressed( MouseEvent event ) { //点击鼠标
triggerEvent(event); //调用triggerEvent方法处理事件
- 2023-03-05 04:05:03下载
- 积分:1