-
ProDSP_F28335_MPPTD
说明: 三种常用的MPPT算法----恒压法,扰动法和电导增量法程序(Procedures of constant pressure method, disturbance method and conductance increment method)
- 2019-12-06 17:11:01下载
- 积分:1
-
Visual C# 使用键盘控制窗体的移动
Visual C#使用键盘控制窗体的移动,创建窗体对象,设置窗体接收按键事件,定义一个标识窗体的变量,判断按键类型,判断后关闭本窗体。
private void Form1_Load(object sender, EventArgs e)
{
Frm_Main form1 = new Frm_Main();//创建窗体对象
form1.KeyPreview = true;//设置窗体接收按键事件
}
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
Point point = this.Location;//定义一个标识窗体的变量
switch (e.KeyData)//判断按键类型
{
case Keys.Up://当按键为上方向键时
point.Y -= 2;
break;
case Keys.Down://当按键为下方向键时
point.Y += 2;
break;
case Keys.Right://当按键为右方向键时
point.X += 2;
break;
case Keys.Left://当按键为左方向键时
point.X -= 2;
break;
case Keys.Escape://当按键为Esc键时
this.Close();//关闭本窗体
break;
default: break;
}
this.Location = point;
}
- 2022-03-13 23:48:13下载
- 积分:1
-
mySnikeNew
贪吃蛇游戏,简单,适合初学者.可以加速,变粗(Snake game, simple and suitable for beginners. Can speed up, thick)
- 2011-01-16 18:09:37下载
- 积分:1
-
一种个性的JS动画版图文导航菜单
一种个性的JS动画版图文导航菜单,初始打开网页的时候,按钮是整齐排列的,当你的鼠标移上按钮的时候,按钮突然下沉,出现一张图片,而且还具有动画缓冲,慢慢停止的感觉,动态效果十足,还是相当有视觉效果的。
- 2022-10-21 16:50:04下载
- 积分:1
-
eemd_example
eemd example for python
- 2020-06-16 12:40:02下载
- 积分:1
-
此程序完成全排列问题,大家可以讨论学习。
此程序完成全排列问题,大家可以讨论学习。-this with the whole procedure is completed, we can discuss learning.
- 2022-03-24 23:49:24下载
- 积分:1
-
光束在自由空间以及各种介质中传播
说明: 这个程序可以运用到光束的传播中,运用到各种 光束在自由空间以及各种介质中传播(This program can be applied to the propagation of light beams, to the propagation of light beams in free space and in various media)
- 2020-06-10 09:33:25下载
- 积分:1
-
DIP
这是数字图像处理的MATLAB源码,其中包含许多数字图像处理常用的操作,比如图像中值滤波,k_l变换,直方图均衡化等等。(This is the MATLAB source of digital image processing, which contains many operations commonly used in digital image processing, such as image median filtering, k_l transform, histogram equalization, etc.)
- 2018-02-28 10:27:52下载
- 积分:1
-
你的小蔡
cai shu zi you xi Applet ban
- 2022-09-27 16:00:03下载
- 积分:1
-
染色体识别
能够识别显微镜下染色体数量,实时显示结果,程序包含实验图片(Ability to identify the number of chromosomes under the microscope, display the results in real time, the program contains experimental pictures)
- 2020-06-18 16:40:02下载
- 积分:1