-
Q104--AD8367模块++可变增益放大器
可变增益放大 程序是keil mdk 5 stm32单片机(The variable gain amplifier program is keil MDK 5 STM32 single chip computer)
- 2020-06-22 19:00:02下载
- 积分:1
-
13
说明: 通过FDATOOL设计巴特沃斯滤波器,并通过simlink 实现仿真(Design Batewosi filter by FDATOL and realize simulation by simlink)
- 2018-03-01 09:56:05下载
- 积分:1
-
新建文件夹
说明: Chebyshev插值:利用切比雪夫节点,构造切比雪夫函数插值函数(Chebyshev interpolation: Chebyshev interpolation function is constructed by using Chebyshev nodes)
- 2019-05-01 10:50:26下载
- 积分:1
-
bayes-location
关于室内定位算法的比较,主要是利用贝叶斯的方法进行(Comparison of indoor location algorithms)
- 2020-07-04 17:00:01下载
- 积分:1
-
Stu-mine
以学生本班的成绩管理为应用、开发一个小小和成绩管理系统。设计了如下类: Person 、Student、Teacher、Credit。利用builder的可视化编程.()
- 2008-07-11 05:26:01下载
- 积分:1
-
PHP source _ environmental design contest online voting system, and the competit...
PHP源码_环保设计大赛网上投票系统,是比赛而做的一个系统,此系统最后也因为出色的表现而获奖-PHP source _ environmental design contest online voting system, and the competition is doing a computer system because the final outstanding performance award
- 2022-11-14 15:35:03下载
- 积分:1
-
第八周
说明: 随机森林Matlab实现,分类回归重要度打分(Random forest matlab implementation, classification regression importance score)
- 2021-04-16 11:38:53下载
- 积分:1
-
模糊pid
说明: 模糊pid控制,可以用于电机控制系统中,参考改进的pid控制(Fuzzy PID control, can be used in motor control system, reference to the improved PID control)
- 2020-12-19 15:14:01下载
- 积分:1
-
用LABVIEW开发的贪吃蛇小游戏,娱乐的同时学习编程思想和方法。...
用LABVIEW开发的贪吃蛇小游戏,娱乐的同时学习编程思想和方法。-Developed using LABVIEW Snake game and entertainment programming at the same time learning the ideas and methods.
- 2022-01-25 19:12:19下载
- 积分: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